-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (46 loc) · 1.71 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
<!-- 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>Document</title>
</head>
<body>
<h1>Sumit Portfolio</h1>
<h2>I'm a Web Developer</h2>
<hr>
<a href="./public/movie-ranking.html">Movie Ranking Project</a>
<h1>The Best Movies According to Sumit</h1>
<h2>My top 3 movies of all-time</h2>
<hr>
<h3>3 Idiots</h3>
<p>This movie teach us to follow the passion</p>
<h3>Chhichhore</h3>
<p>This movie is based on the life of Engineer</p>
<h3>Bagvan</h3>
<p>This movie is based on Family</p>
<a href="./public/birthday-invite.html">Birthday Invite Project</a>
<h2>It's My Birthday!</h2>
<h3>Ont the 8th December</h3>
<img src="./assets/images/cake.png" alt="">
<h3>What to bring:</h3>
<ul>
<li>Baloons(I love baloons)</li>
<li>Cake(I'm really good at eating)</li>
<li>An Apetite(There will be lots of food)</li>
</ul>
<hr>
<a href="./public/about.html">About me</a>
<a href="./public/contact.html">
| Contact me</a>
</body>
</html>
<!-- TODO 2: Add Your previous projects' HTML into the public folder -->
<!-- TODO 3: Take screenshots of your project previews and add the images to the images folder -->
<!-- TODO 4: Add titles/subtitles etc. -->
<!-- TODO 5: Add a link to the project pages -->
<!-- TODO 6: Add images to show the project previews
HINT for TODO 6: You can use the height attribute set to 200 to make the image smaller:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attr-height -->
<!-- TODO 7: Add the Contact Me and About Me page links -->