-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
297 lines (261 loc) · 8.75 KB
/
index.html
File metadata and controls
297 lines (261 loc) · 8.75 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
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Khushpreet-Developer Portfolio </title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Bitcount+Grid+Single+Ink:wght@100..900&family=Martel+Sans:wght@200;300;400;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Tirra:wght@400;500;600;700;800;900&display=swap');
nav {
display: flex;
align-items: center;
justify-content: space-around;
height: 60px;
background-color: rgb(13, 13, 61);
}
nav ul {
list-style: none;
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
}
* {
margin: 0;
padding: 0;
}
body {
background-color: rgb(3, 3, 56);
color: white;
font-family: "Poppins", sans-serif;
font-weight: 700;
font-style: italic;
}
nav .left {
font-size: 1.5rem;
}
.firstsection {
display: flex;
justify-content: space-around;
align-items: center;
margin: 50px 0;
}
.firstsection>div {
width: 30%;
}
.rightsection img {
width: 80%;
}
.leftsection {
height: 60vh;
font-size: 3rem;
}
.leftsection .buttons{
padding:34px
}
.leftsection .btn{
background-color: #232377;
color: white;
padding: 5px;
border-radius: 9px;
border: 1px solid white;
font-size: 25px;
cursor: pointer;
margin: 5px;
}
.purple {
color: rgb(184, 113, 250);
}
.right ul a {
color: white;
text-decoration: none;
}
#element {
color: rgb(184, 113, 250);
}
.secondsection {
max-width: 80vw;
margin: auto;
}
hr {
border: 0;
height: 1px;
background: #8282db;
}
.secondsection h1 {
margin: 34px 48px;
font-size: 34px;
}
.text-gray {
color: gray;
margin: 23px 0;
padding: 23px 0;
}
.secondsection {
height: 60vh;
}
.box {
background: white;
width: 70vw;
height: 2px;
margin: 63px 92px;
display: flex;
}
.secondsection .vertical {
height: 90px;
width: 1px;
background-color: white;
margin: 0 100px;
}
.image-top {
width: 30px;
position: relative;
top: -31px;
left: -10px;
}
.vertical-title {
position: relative;
top: 58px;
width: 150px;
font-size: 23px;
}
.vertical-desc {
position: relative;
top: 70px;
width: 154px;
color: gray;
font-size: 12px;
}
.footer{
display: flex;
background-color: rgb(17 17 52);
height: 200px;
margin: 122px;
justify-content: space-evenly;
align-items: center;
}
.second-footer{
display: flex;
justify-content: center;
gap: 23px;
}
.second-footer a{
color: aliceblue;
}
</style>
</head>
<body>
<header>
<nav>
<div class="left">khushi's Developer</div>
<div class="right">
<ul>
<a href="#">
<li>Home</li>
</a>
<a href="#">
<li>About</li>
</a>
<a href="#">
<li>Services</li>
</a>
<a href="#">
<li>Projects</li>
</a>
<a href="#">
<li>Contact Me</li>
</a>
</ul>
</div>
</nav>
</header>
<main>
<section class="firstsection">
<div class="leftsection">Hi , My name is <span class="purple">khushpreet kaur</span>
<div>and I am a passionate</div>
<span id="element"></span>
<div class="buttons">
<button class="btn">Download Resume</button>
<button class="btn">Visit Github</button>
</div>
</div>
<div class="rightsection"><img src="bg.png" alt=""></div>
</section>
<section class="secondsection">
<hr>
<span class="text-gray">What I have done so far?</span>
<h1>Work Experience</h1>
<div class="box">
<div class="vertical">
<img src="coding.png" alt="" class="image-top">
<div class="vertical-title">
HTML Developer (2010-2012)
</div>
<div class="vertical-desc">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Id itaque magni corporis tenetur
expedita amet quo, nemo repudiandae, quam, quidem voluptate labore illum?
</div>
</div>
<div class="vertical">
<img src="coding.png" alt="" class="image-top">
<div class="vertical-title">
Node.js Developer (2012-2014)
</div>
<div class="vertical-desc">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Id itaque magni corporis tenetur
expedita amet quo, nemo repudiandae, quam, quidem voluptate labore illum?
</div>
</div>
<div class="vertical">
<img src="coding.png" alt="" class="image-top">
<div class="vertical-title">
NPM developer (2014-2016)
</div>
<div class="vertical-desc">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Id itaque magni corporis tenetur
expedita amet quo, nemo repudiandae, quam, quidem voluptate labore illum?
</div>
</div>
<div class="vertical">
<img src="coding.png" alt="" class="image-top">
<div class="vertical-title">
Learner of Tailwind CSS
</div>
<div class="vertical-desc">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Id itaque magni corporis tenetur
expedita amet quo, nemo repudiandae, quam, quidem voluptate labore illum?
</div>
</div>
<div class="vertical">
<img src="coding.png" alt="" class="image-top">
<div class="vertical-title">
Mongo DB explorer(2020-2024)
</div>
<div class="vertical-desc">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Id itaque magni corporis tenetur
expedita amet quo, nemo repudiandae, quam, quidem voluptate labore illum?
</div>
</div>
</div>
</section>
</main>
<div class="footer">
<div class="first-footer">Khushpreet kaur the Developer</div>
<div class="second-footer">
<a href="#">Contact me</a>
<a href="#">freelancing projects</a>
<a href="#">Frontend</a>
<a href="#">About code</a>
</div>
<div class="third-footer">Follow on Github</div>
<div class="fourth-footer"></div>
</div>
<script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script>
<script>
var typed = new Typed('#element', {
strings: ['Web Developer', 'Web Designer', 'Graphics Designer', 'App Developer'],
typeSpeed: 50,
});
</script
</body>
</html>