-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
232 lines (187 loc) · 5.43 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<!DOCTYPE html>
<html>
<head>
<title> My Resume </title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<style>
body {
margin: 0px;
font-family: sans-serif;
font-size: 30px;
}
/* Body Header */
#body-header {
height: 65vh;
opacity: 0.8;
width:100%;
background-image: url(https://ninjasfiles.s3.amazonaws.com/asset_0000000000000020_1549743985_macbook_mouse.jpg);
background-size: cover;
background-position: center;
background-attachment: fixed;
padding-top: 1.2rem;
}
/* Horizontal Lists */
.horizontal-list {
list-style: none;
padding-left: 0px;
margin: 0px;
}
.horizontal-list li {
display: inline-block;
margin: 0px 8px 8px 0px;
font-weight: 100;
font-size: 18px;
}
.horizontal-list li a {
color: white;
text-decoration: none;
}
.nav-menu li a {
transition: color 0.5s, border-bottom 4s;
}
.nav-menu li a:hover {
color: lightgrey;
border-bottom: 1px solid black;
}
.text-center {
text-align: center;
}
/* Name and Social Icons*/
#name-social-container {
margin-top: 20vh;
}
#my-name {
font-size: 4rem;
letter-spacing: 0.1rem;
color: white;
font-weight: 700;
margin-bottom: 0.5rem;
}
.social-icons li a i {
/*color: red;*/
padding: 10px;
font-size: 20px;
border-radius: 50%;
}
.social-icons li a i:hover {
box-shadow: 0px 0px 6px 4px rgba(230, 196, 196, 0.3);
}
/*About Section*/
#about {
height: auto;
width: fixed;
position: relative;
color: grey;
font-size:21px;
line-height:32px;
padding-right:130px;
padding-left:130px;
padding-top:30px;
margin-bottom:80px;
}
#my-image {
height: 17rem;
width: 17rem;
margin: auto;
margin-top: -22vh;
}
#my-image img {
height: 100%;
width: 100%;
border-radius: 50%;
border: 6px solid white;
/* box-shadow: 2px; */
box-shadow: 0px 0px 4px 4px rgb(118, 117, 117);
}
</style>
</head>
<body>
<header id="body-header">
<nav>
<ul class="horizontal-list text-center nav-menu">
<li>
<a href="#"> Home </a>
</li>
<li>
<a href="#about"> About </a>
</li>
<li>
<a href="#skills"> Skills </a>
</li>
<li>
<a href="#experience">Experience</a>
</li>
<li>
<a href="#education">Education</a>
</li>
<li>
<a href="#portfolio">Portfolio</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
<div id="name-social-container">
<div class="text-center">
<h1 id="my-name">
Piyush Yadav
</h1>
</div>
<div>
<ul class="horizontal-list text-center social-icons">
<li>
<a href="#">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-stack-overflow"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-google-plus-g"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li>
<a href="#">
<i class="fab fa-quora"></i>
</a>
</li>
</ul>
</div>
</div>
</header>
<main>
<section id="about">
<div id="my-image">
<img src="pic.jpg">
</div>
<h1><b><u>Academic Achievements:</u></b></h1>
<ul>
<li>
Scored 93.6% in class 10th.
</li>
</ul>
<!-- <p id="about"> Lorem Ipsum is simply dummy text of the printing and <span style="color:#2857a4">typesetting industry</span>. Lorem Ipsum has been the industry's standard <span style="color:#2857a4">dummy text ever</span>v since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s <span style="color:#2857a4">with the release of Letraset</span> sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p> -->
</section>
<section id="skills">
</section>
<section id="experience">
</section>
<section id="education">
</section>
<section id="portfolio">
</section>
<section id="contact">
</section>
</main>
</body>
</html>