-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (69 loc) · 3.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#edu">Education</a></li>
<li><a href="#pro">Projects</a></li>
<li><a href="#skill">Skills</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section>
<div id="about">
<img src="/images/me.jpg" id="me" alt="retry">
<h1>Hello , I am Mahak Pathak</h1>
<p>passionate about web development</p>
</div>
<hr>
<div id="edu">
<h2>Education</h2>
<p>I have done my schooling from St. Joseph's Sr. Sec. School Kasganj with 91.4% in 10th and 91.2%in 12th.<br>Currently , I am pursuing B.tech from Ajay Kumar Garg Engineering College , Ghaziabad in Information Technology Branch and I am in 2nd year of my graduation.</p>
</div>
<hr>
<div id="pro">
<h2>Project</h2>
<p>I have created this e-commerce website which has a list of product with its name , image and price.We can also navigate to the product description page when we click the image and it has add to cart and buy now button.</p>
<ul>
<li><a href="https://e-commerce-mu-flame-57.vercel.app/" target="_blank">Hosted link</a></li>
<li><a href="https://github.com/MahakPathak/e-commerce">Github link</a></li>
</ul>
</div>
<hr>
<div id="skill">
<h2>Skills</h2>
<p>I have a good command on HTML and CSS for designing well structured and responsive webpages and currently I am learning C++ for problem solving skills.</p>
</div>
<hr>
<div id="contact">
<h2>Contact</h2>
<form action="">
<div>
<label for="name">Name</label>
<input type="text" placeholder="Enter name" name="name">
</div>
<div>
<label for="email">Email</label>
<input type="email" name="email" placeholder="Enter email">
</div>
<div>
<input type="button" id="btn" value="submit">
</div>
</form>
<ul>
<li><a href="https://www.instagram.com/mahak.pathak_/" target="_blank"><img class="icon" src="/images/insta.png" alt=""></a></li>
<li><a href="https://www.linkedin.com/in/mahak-pathak-26728b318/" target="_blank"><img class="icon"src="/images/linkedin.jpg" alt=""></a></li>
<li><a href="https://github.com/MahakPathak" target="_blank"><img class ="icon" src="/images/github.png" alt=""></a></li>
<li><a href="https://leetcode.com/u/Mahak_Pathak/" target="_blank"><img class ="icon" src="/images/leetcode.png" alt=""></a></li>
</ul>
</div>
</section>
</body>
</html>