-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (43 loc) · 1.16 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
<!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>
<!-- Navbar -->
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="work">Work</a></li>
<li><a href="resume">Resume</a></li>
<li><a href="contact"></a>Ccontact</li>
</ul>
</nav>
<!--Sections -->
<section id="home">
<h1>Home</h1>
<p>Welcome to my website!</p>
</section>
<section id="about">
<h1>About</h1>
<p>Here's a bit about me...</p>
</section>
<section id="work">
<h1>Work</h1>
<p>Here's some of my recent work</p>
</section>
<section id="resume">
<h1>Resume</h1>
<p>My professional background and skills</p>
</section>
<section id="contact">
<h1>Contact</h1>
<p>Rech out to me</p>
</section>
<video src="Paravida unsi.mp4"></video>
</body>
</html>