-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (78 loc) · 4.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fotomatic</title>
<!--Stylesheets-->
<link href="./resources/css/reset.css" type="text/css" rel="stylesheet">
<link href="./resources/css/styles.css" type="text/css" rel="stylesheet">
<!--Fonts-->
<link href="https://fonts.googleapis.com/css?family=Damion" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Rubik" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,600,700" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital@1&display=swap" rel="stylesheet">
</head>
<body>
<!--Header-->
<header class="container group">
<a class ="desktop-view logo" href="./index.html">Fotomatic</a>
<nav class= "desktop-view primary-nav">
<ul>
<li><a href = "#">Product detail</a></li>
<li><a href="#"> About Us</a></li>
<li><a href="#">Follow us</a><img class = "icon" src="./resources/images/instagram.png"></li>
<li class = "tablet-view button"><a href="#">Join Us</a></li>
</ul>
</nav>
<!--Responsive for mobile-->
<nav class= "mobile-view primary-nav">
<ul>
<li><a href = "#"><img src="./resources/images/ic-logo.svg" alt="Logo icon"> </a></li>
<li><a href = "#"><img src="./resources/images/ic-product-detail.svg" alt="Product detail"> </a></li>
<li><a href="#"> <img src="./resources/images/ic-about-us.svg" alt="About us"></a></li>
<li class = "tablet-view button"><a href="#">Join Us</a></li>
</ul>
</nav>
</header>
<main class="container">
<section id = "sign-up">
<h2>Instant</h2>
<h1>Format Camera</h1>
<p>Email is for the demo and be in our waiting list for February 2017 release!</p>
<a class="button">Join the waiting list</a>
</section>
</main>
<section id = "features" class = "container" >
<section class = "feature-card">
<img class = "img-container" src="./resources/images/feature-1.png">
<h2>Advanced, automatic, instant</h2>
<p>Shutterspeed, apperture and flash output adjust automatically</p>
</section>
<section class = "feature-card">
<img class = "img-container" src="./resources/images/feature-2.png">
<h2>Beautifully crafted inside-out</h2>
<p>From the paint outside to the tiny screw inside, Fotomatic is crafted with love and 20-year of expertise</p>
</section>
</section>
<section id = "filters" class="container" >
<h2>Over 20+ filters to choose from</h2>
<h4>Feed your creativity with 20 different filter designed by our eclectic in-house photographers!</h4>
<div class = "filter-imgsection">
<img class="img-container" src="./resources/images/filter-1.png" alt = "filter effect - flower held in a hand">
<img class="img-container" src="./resources/images/filter-2.png" alt="filter effect - cherry blossoms">
<img class="img-container" src="./resources/images/filter-3.png" alt="filter effect - B&W image of a person with camera">
<img class="img-container" src="./resources/images/filter-4.png" alt="filter effect -blue tint nature photography hills">
</div>
</section>
<section id="quotes" class="container group">
<p>“It’s truly something that could create a brand new photography Renaissance”</p>
<img src="./resources/images/photography-logo.png" alt = "logo photography society">
</section>
<footer class="container group">
<small class="copyright">© 2016 Fotomatic, All rights reserved</small>
<small class="location">Designed in NYC</small>
</footer>
</body>
</html>