-
Notifications
You must be signed in to change notification settings - Fork 0
/
1st.html
95 lines (62 loc) · 3.37 KB
/
1st.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>1st </title>
<style>
html{zoom: 0.75;}
* {
padding: 0px;
margin: 0px;
box-sizing: border-box;
}
li {
padding: 10px;
}
ul:nth-of-type(2) li {
padding: 15px;
}
.tab , .tab_2{
margin-bottom:20px;
}
</style>
</head>
<body>
<div class="container">
<div class="first" style="height:1122px;min-width:250px;position: absolute;padding:180px 10px 10px 10px;background-color:rgb(73, 73, 73);color:white">
<h3 style="padding:10px;border-bottom:3px solid gray;margin:0px 0px 50px 0px;font-family:Lucida Fax;">Contact</h3> <br/>
<ul style="padding-left:30px">
<li> ADDRESS <br/> <span style="font-size: 10px;"> {{address}}</span></li>
<li> EMAIL <br/> <span style="font-size: 10px;"> {{email}}</span></li>
<li>MOBILE <br/> <span style="font-size: 10px;"> {{mobile}} </span></li>
</ul>
<br/>
<h3 style="padding:10px;border-bottom:3px solid gray;margin:20px 0px 50px 0px;font-family:Lucida Fax;">skill</h3>
<ul style="padding-left:30px">
<li>{{skill1}}<br/></li>
</ul>
</div>
<div class="second" style="height:1122px;min-width:537px;position: absolute;right:0px;padding-left:10px;">
<h1 style="border-bottom:3px solid #808080;padding:30px 0px 60px 30px ;font-size: 50px;font-family: Copperplate Gothic;margin-top:60px">{{name}}</h1>
<div class="experience" style="min-height: 300px;">
<h3 style="padding:20px 0px 50px 0px;font-family:Engravers MT;">Experience</h3>
<div class="tab">
<h4 style="margin-bottom:30px; position: relative;min-height: 100px;">
{{start1}} - {{end1}} <br/><br/> {{company1}}
<span style="font-size: 13px;margin-left:200px;position: absolute;top:0px; ;margin-right:10px;line-height:1.5;font-family:Book Antiqua;font-weight: lighter;"> <span style="font-weight: bold;display:inline-block">
{{jobtitle1}} </span><br/><br/> {{jobdescription1}}</span></h4></div>
</div>
<!-- ................................EDUCATION SECTION........................... -->
<div class="education" style="min-height:150px">
<h3 style="padding:20px 0px 30px 0px;font-family:Engravers MT;border-top:3px solid gray;margin-top:20px;">Education</h3>
<div class="tab_2">
<h4 style="margin-bottom:40px;position: relative;">
{{graduationmonth1}} - {{graduationyear1}} <br/> <br/> {{schoolname1}}
<span style="font-size: 13px;position: absolute;top:0px;left:250px;line-height:1.5;font-family:Book Antiqua; font-weight: lighter; ">
{{degree1}}<br/><br/></h4></div>
</div>
</div>
</div>
</body>
</html>