-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (62 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Profile Page</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header id="title">
<h1><i>My Profile Page</i></h1>
</header>
<section>
<h2>Personal Details</h2>
<img
class="pfp"
src="pfp.jpg"
alt="My Photo"
width="200"
height="200"
/>
<ul>
<li><strong>Name:</strong> Raghvendra Tripathi</li>
<li><strong>Occupation:</strong> Student at VESIT</li>
<li><strong>Email:</strong> [email protected]</li>
<li><strong>Location:</strong> Mumbai, India</li>
<li>
<strong>LinkedIn:</strong>
<a href="https://www.linkedin.com/in/raghvendraT" target="_blank"
>my linkedin</a
>
</li>
</ul>
</section>
<section>
<h2>Skill Sets</h2>
<ul>
<li>Web Development</li>
<li>Project Management</li>
<li>Public Speaking</li>
</ul>
</section>
<section>
<h2>Introduction Audio</h2>
<audio controls>
<source src="intro.mp3" type="audio/mpeg" />
</audio>
</section>
<section>
<h2>Introduction Video</h2>
<video controls width="500">
<source src="path/to/intro_video.mp4" type="video/mp4" />
</video>
</section>
<footer>
<p>ThankYou!</p>
</footer>
</body>
</html>