-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
245 lines (184 loc) · 9.8 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
233
234
235
236
237
238
239
240
241
242
243
244
245
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Font Awesome Link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- CSS Link -->
<link rel="stylesheet" href="style.css">
<title> Portfolio </title>
</head>
<body>
<!-- Navbar Section -->
<header class="header">
<a href="#" class="logo">Mayank</a>
<div id="menu-bar"> <i class="fa-solid fa-bars"></i></div>
<nav class="navbar">
<a href="/" class="active">Home</a>
<a href="#about">About Me</a>
<a href="#services">Services</a>
<a href="#skill">Skills</a>
<a href="#contect">Contact Me</a>
</nav>
</header>
<!-- Home Page Section -->
<section class="home" id="home">
<div class="home-content">
<h2>Hello,</h2>
<h3>I'm a <span id="text"></span></h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Debitis, tempore!</p>
<div class="social-icons">
<a href=""><i class="fa-brands fa-github"></i></a>
<a href=""><i class="fa-brands fa-linkedin"></i></a>
<a href=""><i class="fa-brands fa-twitter"></i></a>
<a href=""><i class="fa-brands fa-reddit"></i></a>
<a href=""><i class="fa-solid fa-envelope"></i></a>
</div>
<a href="#" class="btn">Download Resume</a>
</div>
</section>
<!-- About Section Starts -->
<section class="about" id="about">
<h2 class="heading">About <span>Me</span></h2>
<div class="about-img">
<img src="final-img.png" alt="">
<div class="circle-spin"></div>
</div>
<div class="about-content">
<p>Hi, I'm Mayank, a passionate and dedicated Web Developer and committed to delivering exceptional Websites. With over 1 year of experience in Development, I've had the privilege of working on Full Stack Role.
</p>
<p>My approach towards developing websites is fundamental and I always try to apply this approach in my Work. This Method allows me in creating websites impactful. Apart from my work, I also enjoy some other activities like singing, travelling etc..., which helps me stay creative and inspired in my professional life.
</p>
<p>I'm always excited to connect with like-minded professionals and explore new opportunities. Feel free to Contact Me to View My Work and we see how we can collaborate or to learn more about my work. <br> ~Thanks
</p>
</div>
</section>
<!-- Services Section Starts -->
<section class="services" id="services">
<h2 class="heading"> My <span> Services </span></h2>
<div class="services-container">
<div class="services-box">
<i class="fa-solid fa-code"></i>
<h3>Web Developer</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Qui adipisci perferendis sunt aspernatur! Aspernatur, velit!</p>
<a href="#" class="btn">Know More</a>
</div>
<div class="services-box">
<i class="fa-solid fa-laptop-code"></i>
<h3>Programmer</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Qui adipisci perferendis sunt aspernatur! Aspernatur, velit!</p>
<a href="#" class="btn">Know More</a>
</div>
<div class="services-box">
<i class="fa-solid fa-palette"></i>
<h3>Web Designer</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Qui adipisci perferendis sunt aspernatur! Aspernatur, velit!</p>
<a href="#" class="btn">Know More</a>
</div>
</div>
</section>
<!-- Services Section Starts -->
<section class="skill" id="skill">
<h2 class="heading"> My <span> Skills </span></h2>
<div class="skill-container">
<div class="skill-row">
<div class="skill-col">
<h3 class="title">Coding Skills</h3>
<div class="skill-box">
<div class="skill-content">
<div class="progress">
<h3><i class="fa-brands fa-html5"></i> <span>100%</span></h3>
<div class="bar"><span></span></div>
</div>
<div class="progress">
<h3><i class="fa-brands fa-css3"></i><span>80%</span></h3>
<div class="bar"><span></span></div>
</div>
<div class="progress">
<h3><i class="fa-brands fa-js"></i><span>80%</span></h3>
<div class="bar"><span></span></div>
</div>
<div class="progress">
<h3><i class="fa-solid fa-code"></i> <span>95%</span></h3>
<div class="bar"><span></span></div>
</div>
<div class="progress">
<h3><i class="fa-brands fa-python"></i> <span>70%</span></h3>
<div class="bar"><span></span></div>
</div>
</div>
</div>
</div>
<div class="skill-col">
<h3 class="title">Professional Skills</h3>
<div class="skill-box">
<div class="skill-content">
<div class="progress">
<h3>HTML <span>100%</span></h3>
<div class="bar"><span></span></div>
</div>
<div class="progress">
<h3>CSS <span>80%</span></h3>
<div class="bar"><span></span></div>
</div>
<div class="progress">
<h3>JavaScript <span>80%</span></h3>
<div class="bar"><span></span></div>
</div>
<div class="progress">
<h3>C/C++ <span>95%</span></h3>
<div class="bar"><span></span></div>
</div>
<div class="progress">
<h3>Python <span>70%</span></h3>
<div class="bar"><span></span></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contect Section Starts -->
<section class="contect" id="contect">
<h2 class="heading"> Contact <span> Me :) </span></h2>
<form action="#">
<div class="input-box">
<div class="input-field">
<input type="text" placeholder="Name" required>
<span class="focus"></span>
</div>
<div class="input-field">
<input type="text" placeholder="Email ID" required>
<span class="focus"></span>
</div>
</div>
<div class="input-box">
<div class="input-field">
<input type="number" placeholder="Mobile No." required>
<span class="focus"></span>
</div>
<div class="input-field">
<input type="text" placeholder="Subject" required>
<span class="focus"></span>
</div>
</div>
<div class="text-field">
<textarea name="" id="" cols="30" rows="10" placeholder="Write Your Message here" required></textarea>
<span class="focus"></span>
</div>
<a href="#" class="btn">Submit</a>
</form>
</section>
<!-- Footer Section Starts -->
<div class="footerBottom">
<p>copyright © 2024....All Rights Reserved.</p>
<br>
<p>Designed by <span>MAYANK</span></p>
</div>
<!-- JS File Link -->
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
<script src="script.js"></script>
</body>
</html>