-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout_Me.html
120 lines (100 loc) · 3.91 KB
/
About_Me.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<title>About Me</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/Global.css" rel="stylesheet">
<link href="css/about.css" rel="stylesheet">
</head>
<body>
<header>
<figure id="h_logo">
<img src="Images/logos/Mylogos/aklile-logos_white_cropped.png" alt="Aklile's Logo">
</figure>
<nav id="nav_header">
<a href="Home.html">Home</a>
<a href="Works.html">Works</a>
<a href="Services.html">Services</a>
<a href="Blog.html">Blog</a>
<a href="Contact.html">Contact</a>
<a href="About_Me.html">About Me</a>
<a href="javascript:void(0);" class="icon" onclick="toggleMenu()">
<img src="Images/menu_white_24dp.svg" alt="navigation logo">
</a>
</nav>
</header>
<main>
<div id="intro">
<h1>Somethings you need to know about me !</h1>
<figure><img src="Images/profile_photo.webp" alt="aklile's photo"></figure>
<article>
<section>
<p>
Hey there, My name is Aklile Yilma. I am an undergrauate
student at Addis Ababa Institute of technology. I am studying
Software Engineering. I live in Addis Ababa and I think of my
self as great student who can provide a lot for the tech industry.<br>
</p>
</section>
<section>
<p>
I have experience in designing website both front-end and back-end.
</p>
</section>
</article>
</div>
<div id="Hobbies_more">
<div>
<h2>Hobbies:</h2>
<ul>
<li>Coding</li>
<li>Working Out</li>
<li>Listening to Music</li>
<li>Watching Football</li>
</ul>
</div>
<div>
<h2>Skills:</h2>
<ul>
<li>Human languages:</li>
<ul>
<li>English</li>
<li>Amharic</li>
</ul>
<li>Programming Languages:</li>
<ul>
<li>HTML, CSS, JavaScript</li>
<li>Java</li>
<li>Python</li>
<li>C++</li>
</ul>
</div>
<div>
<h2>Worked For:</h2>
<ul>
<li>Be first to hire me !</li>
</ul>
</ul>
</div>
</div>
</main>
<footer>
<figure id="f_logo">
<img src="Images/logos/Mylogos/aklile-logos_transparent.png" alt="a transparent logo of aklile">
</figure>
<nav id="nav_footer">
<a href="Home.html">Home</a>
<a href="Works.html">Works</a>
<a href="Services.html">Services</a>
<a href="Blog.html">Blog</a>
<a href="Contact.html">Contact</a>
<a href="About_Me.html">About Me</a>
</nav>
<p>
aklile web technologies <br> ©copyright 2021 <br> read the privacy policy!
</p>
</footer>
<script src="js/common.js"></script>
</body>
</html>