-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
138 lines (136 loc) · 4.46 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<meta
name="description"
content="Professional Photographer available for weddings and special events!"
/>
<meta name="robots" content="index, follow" />
<title>Elena Joy | Photography</title>
</head>
<body>
<header class="main-head">
<nav>
<h1 id="logo">Elena Joy</h1>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="burger">
<span class="line1"></span>
<span class="line2"></span>
<span class="line3"></span>
</div>
</nav>
</header>
<main>
<section class="hero">
<div class="hero-introduction flex">
<h2>
Elena Joy <br />
Photography
</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Consequatur
odio laboriosam sunt distinctio! Ex et similique, blanditiis
voluptatum autem temporibus quo quidem libero quas illo explicabo
dolor voluptatem deserunt error?
</p>
<a href="#gallery" id="gallery">Gallery</a>
</div>
<div class="hero-images">
<img
class="hero-elena"
src="img/elena-joy.png"
alt="picture of elena joy"
/>
<img src="img/plant1.png" alt="" class="plant1 plant" />
<img src="img/plant2.png" alt="" class="plant2 plant" />
</div>
</section>
<section class="about" id="about">
<div class="about-image">
<h5>MINIMAL</h5>
<img src="img/about-image.png" alt="portrait-picture" />
</div>
<div class="about-text flex">
<h2>Elena Joy</h2>
<div class="about-life">
<h3>My Life</h3>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Exercitationem aut nemo commodi rem, similique beatae. Sequi,
soluta enim. Nam, omnis?
</p>
</div>
<div class="about-work">
<h3>My Work</h3>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Quisquam
saepe rerum incidunt nihil debitis totam excepturi ut eaque nisi
natus.
</p>
</div>
<div class="about-contact">
<h3>Get In Touch</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Architecto, voluptate. Temporibus, deserunt harum est alias
possimus aspernatur quisquam voluptatibus dignissimos.
</p>
</div>
</div>
</section>
<div class="gallery">
<header class="gallery-head">
<h2>Quality Photography</h2>
<p>My professional photo gallery</p>
</header>
<img class="gallery1" src="img/gallery-1.jpg" alt="man in suit" />
<img class="gallery2" src="img/gallery-2.jpg" alt="lady in coat" />
<img class="gallery3" src="img/gallery-3.jpg" alt="lady in t-shirt" />
<img class="gallery4" src="img/gallery-4.jpg" alt="lady in kacket" />
</div>
<section class="contact" id="contact">
<div class="form-wrapper flex">
<h2>
Get in <br />
<span> touch.</span>
</h2>
<form>
<label for="email">Your Email:</label>
<input type="email" id="email required" />
<button type="submit">Submit</button>
</form>
</div>
<img src="img/contact-image.jpg" alt="elena-joy" />
</section>
</main>
<footer>
<h4>Elena Joy © 2022</h4>
<ul>
<li>
<a href="#"
><img src="img/youtube-symbol 1.svg" alt="youtube-social-media"
/></a>
</li>
<li>
<a href="#"
><img src="img/twitter 1.svg" alt="twitter-social-media"
/></a>
</li>
<li>
<a href="#"
><img src="img/instagram 1.svg" alt="instagram-social-media"
/></a>
</li>
</ul>
</footer>
<script src="app.js"></script>
</body>
</html>