-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (67 loc) · 2.1 KB
/
index.html
File metadata and controls
76 lines (67 loc) · 2.1 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me Game</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>
About Me Game
</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
</header>
<main>
<p>
Hello, my name is Osama Baker. I am from Jordan, and I am learning software development. I am keen to develop my skills in HTML, CSS and Javascript so I can become a better developer and create solutions for businesses and individuals.
</p>
<section id="education">
<span>
Education
</span>
<ul>
<li>LTUC - Software Development</li>
<li>SAE AMMAN - Graphic Design</li>
<li>CNAQ - Health & Safety</li>
</ul>
</section>
<section id="work-experience">
<span>Work Experience</span>
<ul>
<li>Graphic Designer - Freelancer - 2020/2021</li>
<li>Sales Agent - Freelancer - 2017/2019</li>
<li>Safety Officer - QCON - 2015/2016</li>
</ul>
</section>
<div id="top10movies">
<span>Top Ten Movies I Like</span>
<ol>
<li>Titanic</li>
<li>Bad Boys</li>
<li>Another One</li>
<li>Need For Speed</li>
<li>The One</li>
<li>Undisputed</li>
<li>Give Me A Break</li>
<li>We Are Heroes</li>
<li>Superman</li>
<li>Spiderman</li>
</ol>
</div>
</main>
<footer>
© 2021 - Osama Baker
</footer>
<script src="js/app.js"></script>
</body>
</html>