-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathq3.html
More file actions
37 lines (30 loc) · 1004 Bytes
/
q3.html
File metadata and controls
37 lines (30 loc) · 1004 Bytes
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
<!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>
</head>
<body>
<h1>My Portfolio</h1>
<!-- Profile Picture -->
<img src="C:\Users\Utsav\Downloads\Mee.jpg" alt="Profile Picture" width="270" height="400" />
<!-- Navigation Menu -->
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- Social Media Links -->
<h2>Find Me On</h2>
<ul>
<li><a href="https://www.linkedin.com/in/utsav-hirapra-6078b6271/" target="_blank">LinkedIn</a></li>
<li><a href="https://github.com/utsav1213" target="_blank">GitHub</a></li>
</ul>
<!-- Email Link -->
<h2>Contact Me</h2>
<p>Email: <a href="utsavhirapra21@gmail.com">utsavhirapra21@gmail.com</a></p>
</body>
</html>