-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (88 loc) · 3.69 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
<!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 href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Rubik:ital@0;1&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Damion&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<title>fotomat</title>
</head>
<body>
<div class="main-content-area">
<header>
<nav>
<ul>
<li><a href="#">Follow us</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Product detail</a></li>
<li><a href="#"><button class="nav-btn">Join us</button></a></li>
</ul>
<ul>
<li>
<a href="#"><img src="images/ic-product-detail.svg"></a>
</li>
<li>
<a href="#"><img src="images/ic-about-us.svg"></a>
</li>
<li>
<a href="#"><img src="images/ic-logo.svg"></a>
</li>
</ul>
</nav>
<!-- company name as logo -->
<div class="logo">Fotomat</div>
</header>
<!-- main container div containing the sign up card -->
<div class="main-container">
<!-- sign up card -->
<div class="banner">
<!-- card first heading istant -->
<h2 class="ist">Instant</h2>
<!-- card second heading "format camera" -->
<h2 class="for">Format camera</h2>
<p>Email us to request a demo and be in our<br> waiting list for the
<strong>Febuary 2017</strong>release!</p>
<button class="btn">Join the waiting list</button> </div>
</div>
<!-- second section container -->
<div class="sub-container">
<div class="row">
<div class="col-1">
<img src="images/feature-1.png">
<h4>Advanced,automatic, instant</h4>
<p>Shutter speed, apperture and flash output adjust automatically</p>
</div>
<div class="col-2">
<img src="images/feature-2.png">
<h4>Beautifully crafted inside-out</h4>
<p>From the paint outside to the tiny screw inside, Fotomatic is crafted with love and 20-year of expertise</p>
</div>
</div>
</div>
<!-- section for filters -->
<div class="sub-container-1">
<div class="row-head">
<h3>Over 20+ filters to choose from</h3>
<p>Feed your creativity with 20 different filter designed by our eclectic in-house photographers!</p>
</div>
<div class="row-1">
<img src="images/filter-1.png">
<img src="images/filter-2.png">
<img src="images/filter-3.png">
<img src="images/filter-4.png">
</div>
</div>
<div class="end-note">
<p>“It’s truly something that could create a brand new photography<br> Renaissance”<span><img src="images/photography-logo.png"></span></p>
</div>
</div>
<footer id='footer'>
<h5>© 2016 Fotomatic, All Rights Reserved
</h5>
<p>Designed in Ghana by Arafat Erasung</p>
</footer>
</body>
</html>