-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (56 loc) · 2.29 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
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/main.css">
<title>Portfolio Homepage</title>
</head>
<body>
<!-- The header of the page -->
<header class="row">
<div class="logo-box">
<img src="img/logo.png" alt="logo" width="60" height="60">
</div>
<div class="name-box">
<h1 class="name">HAYTHAM AMAIRAH</h1>
<p class="job-title">FRONT-END INSTRUCTOR</p>
</div>
</header>
<!-- This is the main part of the page that contains the hero image and featured work -->
<main>
<div class="hero-img">
<img src="img/design-desk.png" alt="design desk">
</div>
<!-- This section contains the featured work -->
<section class="featured">
<div class="section-header">
<h2>Featured Work</h2>
</div>
<div class="portfolio-container row">
<div id="learn-coding" class="portfolio-box">
<img src="img/Learn-coding.png" alt="Programming Foundation Course">
<h3 class="h3-text">Become a Programmer</h3>
<a href="#" class="text">Programming Foundation</a>
</div>
<div id="html5-course" class="portfolio-box">
<img src="img/webpage-code.png" alt="HTML5 Course">
<h3 class="h3-text">HTML5 Course</h3>
<a href="#" class="text">HTML5 Introduction</a>
</div>
<div id="front-end-course" class="portfolio-box">
<img src="img/web-design.png" alt="Front-End Course">
<h3 class="h3-text">Build a resume-worthy portfolio</h3>
<a href="#" class="text">Become a Front-End Developer</a>
</div>
</div>
</section>
</main>
<!-- The footer of the page -->
<footer role="doc-footnote">
<p class="owner">Made with ♥ by Haytham Amairah</p>
<p class="source">See the repository of this portfolio on <a href="#" class="github-link">GitHub</a></p>
</footer>
</body>
</html>