-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (21 loc) · 867 Bytes
/
index.html
File metadata and controls
24 lines (21 loc) · 867 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
<!-- TODO 1: Create the HTML Boilerplate -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nikhil's Portfolio</title>
</head>
<body>
<h1>Nikhil Tiwari's Portfolio</h1>
<h2>I am a Web Developer</h2>
<hr />
<h2><a href="http://127.0.0.1:3000/public/movie-ranking.html">Movie Ranking Project</a></h2>
<img src="./assets/images/Movie ranking.png" alt="List of Movies project" height="200"/>
<h2><a href="http://127.0.0.1:3000/public/birthday-invite.html">Birthday Invite</a></h2>
<img src="./assets/images/Birthday invite.png" alt="Birthady inviteproject" height="200"/>
<hr />
<a href="http://127.0.0.1:3000/public/about.html">About Me </a>
<a href="http://127.0.0.1:3000/public/contact.html">Contact Me</a>
</body>
</html>