-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (43 loc) · 1.69 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
<!-- 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>Mahmoud Portfolio</title>
</head>
<body>
<h1>Welcome To My Portfolio</h1>
<h2>I am a web developer</h2>
<hr/>
<a href="../2.4 Movie Ranking Project/index.html"><h1>Movie Ranking Project</h1></a>
<h2>The best 3 movies according to me</h2>
<hr/>
<h3>Intarstellar</h3>
<p>Great Movie</p>
<h3>The Godfather</h3>
<p>also Nice one</p>
<h3>Lord of the rings</h3>
<p>Gonna watch it again tonight</p>
<a href="../3.4 Birthday Invite Project/index.html"><h1>Birthday Invite Project</h1></a>
<h1>It's My Birthday</h1>
<h3>December 29th</h3>
<img src="https://raw.githubusercontent.com/appbrewery/webdev/main/birthday-cake3.4.jpeg" alt="Birthday cake">
<h3>What to bring?</h3>
<ul>
<li>Ballons</li>
<li>cake</li>
<li>Gifts</li>
</ul>
<a href="../4.1+Webpages/public/about.html"><h1>About Me</h1></a>
<a href="../4.1+Webpages/public/contact.html"><h1>Contact Me</h1></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 -->