-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (63 loc) · 1.73 KB
/
Copy pathindex.html
File metadata and controls
71 lines (63 loc) · 1.73 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="zh_CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#000000">
<meta name="description" content="Web site created using CloudBase Webify">
<title>赵明亮的第一个网站</title>
<style>
* {
margin: 0;
padding: 0;
border: 1px solid black;
}
body {
position: relative;
background-color: skyblue;
}
.baiSe {
background-color: #fff;
}
.touXiang {
width: 100px;
height: 100px;
margin: 140px auto;
border-radius: 50%;
background-image: url(https://my-website-2ggm2f0238799cf2-1312536266.tcloudbaseapp.com/touxiang.jpg);
background-size: 100px;
}
.name {
width: 100px;
height: 20px;
color: black;
font-size: 20px;
font-weight: 700;
line-height: 20px;
text-align: center;
position: absolute;
top: 260px;
left: 50%;
margin-left: -50px;
border: none;
}
.jianJie {
width: 100%;
height: 200px;
background-color: red;
height: 200px;
position: absolute;
top: 700px;
}
</style>
</head>
<body>
<!-- 头像 -->
<div class="baiSe touXiang">
<!-- 姓名 -->
<div class="name">zmlzml</div>
<!-- 主区域 -->
<div class="baiSe jianJie"></div>
</div>
</body>
</html>