-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2.语义化标签.html
79 lines (77 loc) · 1.28 KB
/
2.语义化标签.html
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>语义化标签</title>
<style type="text/css">
*{
margin:0px;
padding: 0px;
}
header{
width: 1000px;
height: 100px;
background: dodgerblue;
margin:0 auto;
}
nav{
width: 1000px;
height: 50px;
margin:0px auto;
background: pink;
}
nav a{
float:left;
color:#000;
text-decoration: none;
line-height: 50px;
margin-left:20px;
text-align: center;
}
.main{
width: 1000px;
height: 500px;
margin:0px auto;
border: solid 1px cornflowerblue;
}
.main article{
height: 500px;
width:700px;
float:left;
background: lightgreen;
}
.main aside{
height: 500px;
width: 280px;
float:right;
background: yellow;
}
footer{
height: 100px;
width:1000px;
margin:0 auto;
background: mediumpurple;
}
</style>
</head>
<body>
<header></header>
<nav>
<a href="">导航条</a>
<a href="">导航条</a>
<a href="">导航条</a>
<a href="">导航条</a>
<a href="">导航条</a>
<a href="">导航条</a>
<a href="">导航条</a>
<a href="">导航条</a>
<a href="">导航条</a>
<a href="">导航条</a>
</nav>
<div class="main">
<article></article>
<aside></aside>
</div>
<footer></footer>
</body>
</html>