-
Notifications
You must be signed in to change notification settings - Fork 0
/
sam.html.txt
39 lines (39 loc) · 1.12 KB
/
sam.html.txt
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My Personal Portfolio</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>Samarth Ramakant Sarvade</h1>
<img src="C:\Users\Samarth Sarvade\Downloads\beautiful.jpg" alt="My Profile Picture">
<p>A brief introduction about myself.</p>
</header>
<main>
<h2>My Work Samples</h2>
<div class="project">
<h3>Project 1</h3>
<img src="C:\Users\Samarth Sarvade\Downloads\beautiful1.jpg" alt="Project 1">
<p>A brief description of Project 1.</p>
</div>
<div class="project">
<h3>Project 2</h3>
<img src="C:\Users\Samarth Sarvade\Downloads\beautiful2.jpg" alt="Project 2">
<p>A brief description of Project 2.</p>
</div>
<h2>My Skills</h2>
<ul>
<li>Skill 1</li>
<li>Skill 2</li>
<li>Skill 3</li>
</ul>
</main>
<footer>
<p>Contact me at:</p>
<a href="samarthsarvade3@gmail.com">samarthsarvade3@gmail.com</a>
<p>Phone: +91-7058433801</p>
</footer>
</body>
</html>