-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (54 loc) · 1.72 KB
/
index.html
File metadata and controls
55 lines (54 loc) · 1.72 KB
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Welcome</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Welcome to my website </h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
</header>
<main>
<img src="https://pngimg.com/uploads/welcome/welcome_PNG81.png" alt="Welcome">
<article>
<ul>
<li>My name is Ibrahim Sarayrah</li>
<li>I'm a marketing graduate</li>
<li>i was a freelancer in graphic design</li>
<li>my goal to finish this course and become a full stack developer</li>
</ul>
</article>
<article>
<h3 id="movie">My Tob Fav-Movies</h3>
<ol>
<li>Interstellar</li>
<li>Avengers: Endgame</li>
<li>Black Panther</li>
<li>Mission: Impossible - Fallout</li>
<li>Mad Max: Fury Road</li>
<li>A Quiet Place</li>
<li>Thor: Ragnarok</li>
<li>Arrival</li>
<li>Ready Player One</li>
<li>Pirates of the Caribbean</li>
</ol>
</article>
</main>
<footer>
<ul>
<li id="git"><a href="https://github.com/IbrahemSarayrah">Github</a></li>
</ul>
</footer>
<script src="js/app.js"></script>
</body>
</html>