-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.html
111 lines (93 loc) · 3.86 KB
/
Home.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home</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/home_style.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">
<p> <span class="large" >Hi,</span> Welcome to my portfolio website. <br> My name is <em>Aklile Yilma.</em> I am a full stack web developer.</p>
</div>
<div id="service123">
<h1>Services</h1>
<div class="services_container">
<section class="service">
<figure>
<img src="Images/web_development.webp" alt="animated picture of a web devlopment">
</figure>
<div class="main">
<p>Allow me to <strong>build</strong> your website <br> From the ground ...<stong> Up!</stong> </p>
<div class="button-wrapper">
<a class="button" href="Services.html" target="_parent">Get Service</a>
</div>
</div>
</section>
<section class="service">
<figure>
<img src="Images/repair_your_webiste.png" alt="picture of a website being repaired">
</figure>
<div class="main">
<p>Allow me to <strong>repair</strong> your website! <br> Let's fix it, for faster. and elegant usage by your customers.</p>
<div class="button-wrapper">
<a class="button" href="Services.html" target="_parent">Get Service</a>
</div>
</div>
</section>
<section class="service">
<figure><img src="Images/data_analysis.jpg" alt="picture of people analysing data"></figure>
<div class="main">
<p>Allow me to <strong> Test and Maintain</strong> your website! Let me find bugs for you before users do! </p>
<div class="button-wrapper">
<a class="button" href="Services.html" target="_parent">Get Service</a>
</div>
</div>
</section>
</div>
</div>
<section class="thanks">
<div class="thanks-wrapper">
<h2>Thanks for Visiting</h2>
<p>If you're interesed in any of the services you've seen so far, please contact me</p>
<a href="Contact.html" class="button">CONTACT ME</a>
</div>
</section>
</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>