-
Notifications
You must be signed in to change notification settings - Fork 0
/
5th.html
155 lines (123 loc) · 3.67 KB
/
5th.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
html{zoom: 0.75;}
* {
padding: 0px;
margin: 0px;
box-sizing: border-box;
word-break: break-all;
}
body {
}
.container {
position: relative;
max-height: calc(1122px - 199px);
}
h1 {
border-bottom: 4px solid rgb(177, 177, 177);
height: 150px;
padding: 50px 80px 80px 80px;
font-family: High Tower Text;
letter-spacing: 10px;
font-size: 35px;
margin-bottom: 50px;
}
.first {
float: left;
width: 464px;
max-height: 925px;
}
nav {
background-color: black;
color: white;
font-size: 12px;
padding: 20px 0px 0px 10px;
margin-bottom: 40px;
display: block;
}
nav span {
word-break: break-all;
display: inline-block;
margin-right:30px ;
width:180px;
margin-bottom:15px;
}
h2 {
margin: 0px 0px 0px 20px;
letter-spacing: 5px;
}
.tab {
padding: 20px 20px 0px 20px;
}
.second {
padding: 10px 20px 20px 20px;
background-color: rgba(209, 209, 209, 0.61);
width: 326px;
height: 922px;
color: rgb(77, 77, 77);
float: right;
}
.second h2 {
margin: 40px 0px 20px 50px;
}
.tab_2 {
line-height: 2.1;
margin-left: 20px;
margin-bottom:10px;
}
.education {
min-height: 300px;
}
li {
padding: 10px;
margin-left: 50px;
}
p {
font-family: Lucida Fax;
}
nav span {
font-family: Lucida Fax;
line-height: 2;
}
.tab p {
font-size: 15px;
}
</style>
</head>
<body>
<h1> {{name}} </h1>
<div class="container">
<section class="first">
<nav> <span style="letter-spacing: 2px;"> Phone : <br/> {{mobile}} </span> <span > Email :<br/> {{email}}</span> <span>Address :<br/>{{address}}</span> </nav>
<h2>PROFILE</h2> <br/>
<p style="margin:10px 10px 20px 20px;font-size: 14px;">
{{about}}
</p> <br/>
<h2>EXPERIENCE</h2> <br/>
<div class="tab" >
<h6 style="font-size:15px;letter-spacing:3px;line-height:1.6"> {{jobtitle1}} </h6> <span style="font-size: 12px;">{{start1}} - {{end1}} </span> <br/> <span> {{company1}}</span> <br/> <br/>
<p style="font-size: 14px;">
{{jobdescription1}}</p></div>
</section>
<section class="second">
<div class="education">
<h2> EDUCATION</h2> <br/>
<div class="tab_2" style="font-size: 13px;">
<p> {{graduationmonth1}} - {{graduationyear1}} </p>
<p> {{degree1}}</p>
<p>{{schoolname1}}</p></div>
</div>
<h2>SKILLS </h2>
<br/>
<ul>
<li>{{skill1}}</li>
</ul>
</section>
</div>
</body>
</html>