-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (109 loc) · 4.05 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
<!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" />
<meta
name="description"
content="Professional Photographers available for Weddings and Special Events"
/>
<meta name="robots" content="index, follow" />
<link rel="icon" href="" />
<link rel="stylesheet" href="style.css" />
<title>Elena Joy | Photographer</title>
</head>
<body>
<header class="main-head">
<nav>
<h1 id="logo"><a href="#">Elena Joy<a/></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-intro flex">
<h2>
Elena Joy <br />
Photography
</h2>
<p>
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Optio
nostrum est excepturi dignissimos veniam adipisci vel. Quia officia
hic sapiente.
</p>
<a href="#gallery">Gallery</a>
</div>
<div class="hero-img">
<img
src="./assets/elena-joy.png"
alt="Picture of Elena Joy"
class="hero-elena"
/>
<img src="./assets/plant1.png" alt="" class="plant plant1" />
<img src="./assets/plant2.png" alt="" class="plant plant2" />
</div>
</section>
</main>
<section class="about" id="about">
<div class="about-image">
<h5>MINIMAL</h5>
<img src="./assets/about-image.png" alt="Portrait picture">
</div>
<div class="about-text flex">
<h2>Elena Joy</h2>
<div class="about-content">
<h3>My Life</h3>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Fugiat mollitia voluptatem quasi porro beatae soluta dicta. Architecto distinctio eius porro?</p>
</div>
<div class="about-content">
<h3>My Work</h3>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Fugiat mollitia voluptatem quasi porro beatae soluta dicta. Architecto distinctio eius porro?</p>
</div>
<div class="about-content">
<h3>Get in Touch</h3>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Fugiat mollitia voluptatem quasi porro beatae soluta dicta. Architecto distinctio eius porro?</p>
</div>
</div>
</section>
<section class="gallery" id="gallery">
<header class="gallery-head">
<h2>Quality Photography</h2>
<p>My work pictures that I took</p>
</header>
<img src="./assets/gallery-1.jpg" alt="Man in suit" class="gallery1">
<img src="./assets/gallery-2.jpg" alt="Lady in coat" class="gallery2">
<img src="./assets/gallery-3.jpg" alt="Lady in t-shirt" class="gallery3">
<img src="./assets/gallery-4.jpg" alt="Lady in jacket" class="gallery4">
</section>
<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="./assets/contact-image.jpg" alt="Elena Joy">
</section>
<footer>
<h4>© Elena Joy 2020</h4>
<ul>
<li><a href="#"><img src="./assets/youtube-symbol 1.svg" alt="Elena Joy YouTube"></a></li>
<li><a href="#"><img src="./assets/twitter 1.svg" alt="Elena Joy Twitter"></a></li>
<li><a href="#"><img src="./assets/instagram 1.svg" alt="Elena Joy Instagram"></a></li>
</ul>
</footer>
<script src="./app.js"></script>
</body>
</html>