-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (67 loc) · 2.24 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>毛的第一次作业</title>
<style>
div {
background-color: rgb(111, 110, 187);
width:250px;
border: 10px solid rgb(153, 228, 153);
padding: 15px;
margin: 15px;
margin:center;
}
div.static {
position: static;
border: 3px solid #628333;
width:260px;
height:200px;
font-size: large;
}
</style>
</head>
<body>
<div id="container" style="width:1000px">
<div id="header" style="background-color:#ca9739;">
<h1 style="margin-center;">我的家乡--湖北</h1></div>
<div id="menu" style="background-color:#c5af33;height:200px;width:300px;float:left;">
<b>有意思的地方与美食</b><br>
武汉热干面(强烈推荐)<br>
武汉欢乐谷<br>
黄鹤楼<br>
白云楼<br>
沔阳三蒸(特色菜,挺好吃的)<br>
下面附上黄鹤楼图片一张<br>
</div>
<div class="static">
昔人已乘黄鹤去,此地空余黄鹤楼。<br>
黄鹤一去不复返,白云千载空悠悠。<br>
晴川历历汉阳树,芳草萋萋鹦鹉洲。<br>
日暮乡关何处是?烟波江上使人愁。;
</div>
<img border="0" src="https://bkimg.cdn.bcebos.com/pic/377adab44aed2e733a6bee278501a18b87d6fa3f?x-bce-process=image/watermark,image_d2F0ZXIvYmFpa2UxNTA=,g_7,xp_5,yp_5" width="354" height="268">
<div id="content" style="background-color:#972929;height:200px;width:400px;float:left;font-size:25px;">
<p><a href="https://baike.baidu.com/item/%E8%8D%86%E9%97%A8"> 家乡的介绍</a>:热干面是真的好吃,夏天去欢乐谷的话贼热,建议防晒霜,还有黄鹤楼与白云观也是一绝。沔阳三蒸是过年时必备</p>
</div>
<div id="footer" style="background-color:#c08f33;clear:both;text-align:center;width:900px">
<h1>欢迎大家了解与认识我的家乡</h1></div>
<table border="1"
cellpadding="50">
<caption><h1>建议大家去旅游的原因</h1></caption>
<tr>
<th><h1>原因一</h1></th>
<th><h1>原因二</h1></th>
</tr>
<tr>
<td><h2>民风淳朴,嘿嘿</h2></td>
<td><h2>物美价廉</h2></td>
</tr>
<tr>
<td><h2>离湖南近,一个在北一个在南</h2></td>
<td><h2>真的是非常好玩</h2></td>
</tr>
</table>
</div>
</body>
</html>