-
Notifications
You must be signed in to change notification settings - Fork 0
/
task 2 level 1 html file
67 lines (56 loc) · 1.61 KB
/
task 2 level 1 html file
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
<!DOCTYPE html>
<html>
<head>
<title>Vedang Maheshwari - Personal Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1><img src="logo.png" alt="Vedang Maheshwari"></h1>
<p>Web Developer</p>
</header>
<section id="about">
<img src="profile-pic.jpg" alt="Vedang Maheshwari">
<h2>Vedang Maheshwari</h2>
<p>Web developer with a passion for building user-friendly and visually appealing websites. I have experience with HTML, CSS, JavaScript, and React. I am also skilled in SEO and responsive web design.</p>
</section>
<section id="skills">
<h3>Skills</h3>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>React</li>
<li>SEO</li>
<li>Responsive web design</li>
</ul>
</section>
<section id="projects">
<h3>Projects</h3>
<div class="project">
<h4>Project Title 1</h4>
<img src="project-image-1.png" alt="Project Image 1">
<p>Project description</p>
</div>
<div class="project">
<h4>Project Title 2</h4>
<img src="project-image-2.png" alt="Project Image 2">
<p>Project description</p>
</div>
</section>
<section id="resume">
<h3>Resume</h3>
<a href="resume.pdf">Download Resume</a>
</section>
<section id="contact">
<h3>Contact</h3>
<p>Email: [email protected]</p>
<p>Phone: +1-555-555-5555</p>
</section>
<footer>
<p>© 2023 Vedang Maheshwari</p>
<a href="https://github.com/vedangmaheshwari">GitHub</a>
<a href="https://linkedin.com/in/vedangmaheshwari">LinkedIn</a>
</footer>
</body>
</html>