-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (61 loc) · 2.68 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
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<title>Home</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<a href="./index.html" class="logo">Logo</a>
<ul class="nav">
<li><a href="./pages/portfolio.html">Portfolio</a></li>
<li><a href="./pages/about.html">About</a></li>
<li><a href="./pages/contact.html">Contact</a></li>
</ul>
</div>
<div class="hero">
<div class="hero-container">
<div class="title">Abed Badrieh</div>
<p class="paragraph">
Abed Badrieh is a renowned portrait photographer with an uncanny ability to reveal the essence and character of his subjects through his striking and evocative portraits.
</p>
<a href="#" class="sign-up">Hire me!</a>
</div>
<img src="./images/abed.jpg" alt="">
</div>
<div class="information">
<div class="title">Some of my photos</div>
<div class="image-container">
<div class="info-image">
<img src="./images/taha.jpg" alt="">
</div>
<div class="info-image">
<img src="./images/basil.jpg" alt="">
</div>
<div class="info-image">
<img src="./images/tahayazeed.jpg" alt="">
</div>
<div class="info-image">
<img src="./images/hawa.jpg" alt="">
</div>
</div>
</div>
<div class="quote">
<p class="paragraph">"What do we feel when we look at a good photograph? We just want to be there, right at the exact moment that photo taken!"</p>
<p class="quotee">- Mehmet Murat Ildan</p>
</div>
<div class="call-action">
<div class="call-container">
<p class="title">Call to action! It's time!</p>
<p class="paragraph">Hire me now for great photographs and quality work!</p>
</div>
<a href="#" class="sign-up">Hire me!</a>
</div>
<div class="footer">Copyright © Abed Badrieh 2023</div>
</body>
</html>