-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (17 loc) · 1.05 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
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<!--下面的tittle就是你网页最顶部的标签显示的内容-->
<title>这是我的网页</title>
<meta name="keywords" content="这是我的网页">
<meta name="description" content="这是我的网页">
</head>
<!--下面是body的开始,背景颜色为#808080-->
<body bgcolor="#808080">
<!--下面是建立了一个div,style里面是这个div的属性,依次是位置属性、宽度、高度、层级、左边框离父元素距离、上边框离父元素距离、padding right/left/top/bottom、背景颜色-->
<div style="position: absolute; width: 450px; height: 550px; z-index: 1; left: 400px; top: 60px; padding-left: 60px; padding-right: 60px; padding-top: 90px; padding-bottom: 60px; background-color: #FFFFFF" id="layer1">
<!--下面是建立了一个P元素,b标签是加粗字体的作用-->
<p align="center"><b>这是我的网页</b></p>
</body>
</html>