-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathExample1.html
More file actions
52 lines (52 loc) · 1 KB
/
Example1.html
File metadata and controls
52 lines (52 loc) · 1 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head> <title> Example </title>
<style>
header {
background-color:darkcyan;
color:white;
height:50px;
}
section {
background-color:lightyellow;
height:300px;
margin-top:10px;
}
footer {
background-color:darkcyan;
color:white;
height:50px;
margin-top:10px;
}
nav {
height:250px;
width:200px;
margin-left:10px;
padding:20px;
background-color:darkcyan;
color:white;
}
aside {
float:right;
top:100px;
border:2px solid black;
width:200px;
height:50px;
}
</style>
</head>
<body>
<header>
</header>
<section>
<aside> <h3> Ads here.. </h3> </aside>
<nav>
<p> Home </p>
<p> About </p>
<p> Contact </p>
</nav>
</section>
<footer>
</footer>
</body>
</html>