-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.html
More file actions
36 lines (33 loc) · 838 Bytes
/
hello.html
File metadata and controls
36 lines (33 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello world!</title>
<style>
.container {
display: flex;
flex-flow: column wrap;
}
.container > div {
flex: auto;
text-align: center;
margin: 10px;
padding: 10px;
border: 1px solid lightblue;
border-radius: 5px;
}
</style>
</head>
<body>
<center>
<h1>Hello world!</h1>
</center>
<div class="container">
<div>
Here is the picutre of a mighty bald Eagle
</div>
<div>
<img src="eagle.jpg" alt="Bald Eagle" width="150px">
</div>
</div>
</body>
</html>