forked from Ibrahim-Aldereni/About-me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (56 loc) · 2.17 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
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About me | Homepage</title>
<link rel="shortcut icon" href="img/me.png" type="image/x-icon">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<img src="img/meSmall.png" alt="">
<h1>Welcome to "About me" Website</h1>
</header>
<main>
<section id="bio">
<h2>Bio:</h2>
<p>Hello and welcome to my website, My name is Ibrahim Aldereni, I am 27 years old, I have a bachelor degree in electrical engineering from Zarqa University, I am interested in programming and I have a lot of enthusiasm to learn new skills and ideas about web development.
I love coding, reading, travelling and workout specifically calisthenics workout.</p>
</section>
<section id="edu">
<h2>Education History:</h2>
<ul>
<li>I finished High school (science major) in 2011 with 85% average.</li>
<li>I graduated from Zarqa University in 2016 as an (Electrical engineer) with 79% average.</li>
</ul>
</section>
<section id="job">
<h2>Experience</h2>
<ul>
<li>I trained at (Al-Wefaq Control Systems) company for 3 months as an (Automation engineer), I desinged ladder logic for Seimens PLCs and test PLC panels.</li>
<li>Then I worked for (NAF HP) comapny for 3 years as a (Technical support engineer), I service large format HP printers and give a site training to the customers and install all software requirements </li>
</ul>
</section>
<section id="top10">
<h2>Top 10 Movies:</h2>
<ol>
<li>The Hunger Games.</li>
<li>The Maze runner.</li>
<li>Divergent.</li>
<li>Insurgent.</li>
<li>Allegiant.</li>
<li>The Revenant.</li>
<li>Inception.</li>
<li>Interstellar.</li>
<li>The Hobbit.</li>
<li>The Lord of the Rings.</li>
</ol>
</section>
</main>
<footer>
<p>© copy rights, About me website</p>
</footer>
<script src="js/app.js"></script>
</body>
</html>