-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
161 lines (161 loc) · 3.44 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
html, body{
height: 100%;
width: 100%;
}
.menu{
background: url('39f600032e2e1bdfa024.jpg') no-repeat;
background-size:100% 100%;
height: 50%;
padding: 20px 50px;
margin-bottom: 55px;
}
.creative{
color: white;
font-size: 20px;
display: inline-block;
}
.relaDiv{
position: relative;
}
.absoDiv{
position: absolute;
}
.div1{
right: 0;
top: 0;
}
.div2{
color: white;
display: inline-block;
margin-right: 20px;
}
.div3{
margin-top: 30px;
text-align: center;
}
.img{
width: 200px;
height: 200px;
background: url('20200614020454.png') no-repeat;
background-size:100% 100%;
border-radius: 100px;
margin: 0 auto;
}
.name{
font-size: 32px;
font-weight: bold;
color: white;
margin-top: 30px;
}
.desc{
font-weight: bold;
color: white;
margin-bottom: 20px;
}
button{
background: #383888;
border-radius: 3px;
border: 0;
width: 160px;
height: 40px;
font-size: 15px;
color: white;
}
.div4{
text-align: center;
height: 50px;
bottom: -25px;
left: calc(50% - 100px - 25px);
}
.icon{
display: inline-block;
border-radius: 25px;
height: 50px;
width: 50px;
line-height: 50px;
background-color: rgb(137, 137, 137);
position: relative;
}
.icon:not(:last-child){
margin-right: 10px;
}
.icon img{
position: absolute;
top: 5px;
left: 5px;
}
.about{
width: 80%;
height: calc(50% - 185px);
margin: 0 auto;
box-shadow:0px 0px 15px #949494;
padding: 30px 20px;
}
.about h1{
margin-bottom: 20px;
}
.withMarginBottom{
margin-bottom: 25px;
}
.title{
display:inline-block;
margin-right: 50px;
font-weight: bold;
}
.info{
display: inline-block;
}
</style>
</head>
<body>
<div class="menu relaDiv">
<div class="relaDiv">
<div class="creative">CREATIVE CV</div>
<div class="absoDiv div1">
<div class="div2">CONTACT</div>
<div class="div2">EXPERIENCE</div>
<div class="div2">PORTFOLIO</div>
<div class="div2">SKILLS</div>
<div class="div2">ABOUT</div>
</div>
</div>
<div class="div3">
<div class="img"></div>
<div class="name">Eason Lu</div>
<div class="desc">WEB DEVELOPER</div>
<button>Download CV</button>
</div>
<div class="absoDiv div4">
<div class="icon"><img src="f.png" height="40" width="40"></div>
<div class="icon"><img src="tuite.png" height="40" width="40"></div>
<div class="icon"><img src="G.png" height="40" width="40"></div>
<div class="icon"><img src="ig.png" height="40" width="40"></div>
</div>
</div>
<div class="about">
<h1>Basic Information</h1>
<div class="title">
<div class="withMarginBottom">AGE:</div>
<div class="withMarginBottom">EMAIL:</div>
<div class="withMarginBottom">PHONE:</div>
<div class="withMarginBottom">ADDRESS:</div>
<div class="withMarginBottom">LANGUAGE:</div>
</div>
<div class="info">
<div class="withMarginBottom">22</div>
<div class="withMarginBottom">[email protected]</div>
<div class="withMarginBottom">12345678910</div>
<div class="withMarginBottom">ZHA</div>
<div class="withMarginBottom">Chinese, English</div>
</div>
</div>
</body>
</html>