-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (27 loc) · 950 Bytes
/
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
<!-- TODO 1: Create the HTML Boilerplate -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Portfolio project</title>
<style>
body{
background-color: yellow;
}
</style>
</head>
<body>
<!-- This is moulali portfolio, comments done by kalyan -->
<!--second comment-->
<!--third comment-->
<!--fourth comment-->
<h1>Moulali's Portfolio</h1>
<h2>I'm a Web Developer</h2><hr/>
<h3><a href="./public/movie-ranking.html">Movie Ranking Project Link.</a></h3>
<img src="./assets/images/Movie-Ranking.png" height="200" alt="Preview of movie ranking project.">
<h3><a href="./public/birthday-invite.html">Birthday invite project Link.</a></h3>
<img src="./assets/images/Birthday-invite.png" height="200" alt="project Preview"> <hr/>
<a href="./public/about.html">About Me</a>
<a href="./public/contact.html">Contact Me</a>
</body>
</html>