-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (75 loc) · 3.08 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:100&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Aref+Ruqaa&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1 class="logo"><img src="img/logo.png" alt="logo"></h1>
<div class="titles">
<h1>ahmed asiri</h1>
<h3>front-end ninja</h3>
</div>
</header>
<main class="main-content">
<section class="hero">
<p>“من يبغ السفر عليه اجتياز الدروب القديمة”</p>
</section>
<section class="featured-work">
<h2>featured Work</h2>
<section class="work-container">
<div class="item">
<div class="img-container">
<p class="petra"><img src="img/petra5.jpg" alt="desert"></p>
</div>
<h2 class="description">petra</h2>
<h5 class="description">jordan, jo</h5>
</div>
<div class="item">
<div class="img-container">
<p class="riyadh"><img src="img/riyadh.jpg" alt="riyadh"></p>
</div>
<h2 class="description">riyadh</h2>
<h5 class="description">Saudi arabia, sa</h5>
</div>
<div class="item">
<div class="img-container">
<p class="wadi-rem"><img src="img/wadi-rem5.jpg" alt="wadi-rem"></p>
</div>
<h2 class="description">wadi rem</h2>
<h5 class="description">jordan, jo</h5>
</div>
<div class="item">
<div class="img-container">
<p class="old-jeddah"><img src="img/old-jeddah2.jpg" alt="old jeddah"></p>
</div>
<h2 class="description">jeddah</h2>
<h5 class="description">Saudi arabia, Sa</h5>
</div>
<div class="item">
<div class="img-container">
<p class="cairo"><img src="img/cairo.jpg" alt="cairo"></p>
</div>
<h2 class="description">cairo</h2>
<h5 class="description">egypt, EG</h5>
</div>
<div class="item">
<div class="img-container">
<p class="mecca"><img src="img/mecca.jpg" alt="mecca"></p>
</div>
<h2 class="description">mecca</h2>
<h5 class="description">Saudi arabia, Sa</h5>
</div>
</section>
</section>
</main>
<footer>
<p>created by Ahmed Asiri for Udacity.</p>
</footer>
</body>
</html>