-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (124 loc) · 4.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Celestial Color Theory</title>
<!-- Meta -->
<meta charset="utf-8">
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1 user-scalable=no">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Barlow+Condensed:700|Barlow:400,700" rel="stylesheet">
<!-- CSS -->
<link rel='stylesheet' type='text/css' href='styles.css'>
</head>
<body>
<!-- Site Header -->
<header role="banner" aria-label="site navigation" class="site-header">
<!-- Site Navigation -->
<nav role="navigation" class="site-navigation">
<ul class="site-header-left">
<li>
<img src="assets/color-theory-logo.svg" alt="Celestial" />
</li>
</ul>
<ul class="site-header-right">
<li>
<a href="#">About</a>
</li>
<li>
<a href="#" class="button button-primary">Download Now</a>
</li>
</ul>
</nav>
</header>
<!-- Site Main Content -->
<main role="main">
<!-- Main Content Header -->
<section role="region" aria-label="page-hero-title" class="page-hero-header">
<div class="container">
<div class="page-hero-header-left">
<h1 id="page-hero-title">Look up in the sky</h1>
<p>All-new app so you can see deeper and further into space than ever before</p>
<a href="#" class="button button-primary">Download Now</a>
</div>
<div class="page-hero-header-right">
<div class="img-container">
<img src="assets/color-theory-screen-1.webp" alt="application interface" />
</div>
</div>
</div>
</section>
<!-- Main Content Benefits -->
<section role="region" class="main-content-benefits">
<div class="container">
<ul class="clearfix">
<li class="item">
<div class="item-image"></div>
<h2>Step I</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer at nunc id ligula sollicitudin finibus eget id leo.</p>
</li>
<li class="item">
<div class="item-image"></div>
<h2>Step II</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer at nunc id ligula sollicitudin finibus eget id leo.</p>
</li>
<li class="item">
<div class="item-image"></div>
<h2>Step III</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer at nunc id ligula sollicitudin finibus eget id leo.</p>
</li>
</ul>
</div>
</section>
<!-- Main Content Info -->
<section role="region" class="main-content-info">
<div class="mobile-show main-content-info-left">
<img class="mobile-show" src="assets/color-theory-image-1.webp" alt="Nebula"/>
</div>
<div class="container">
<div class="main-content-info-right">
<h2>Pictures of the Sky</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer at nunc id ligula sollicitudin finibus eget id leo.</p>
<a href="#" class="button button-primary">Download Now</a>
</div>
</div>
</section>
<!-- Main Content CTA -->
<section role="region" class="main-content-cta">
<div class="container">
<div class="main-content-cta-left">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer at nunc id ligula sollicitudin finibus eget id leo.</p>
</div>
<div class="main-content-cta-right">
<div class="cta-container">
<input type="email" placeholder="Email Address" />
<button type="submit" class="button button-secondary">Subscribe</button>
</div>
</div>
</div>
</section>
</main>
<!-- Site Footer -->
<footer role="contentinfo" class="footer clearfix">
<!-- Site Footer Nav -->
<nav role="navigation" class="footer-navigation">
<ul class="footer-left">
<li>
Copyright © 2017. Celestial. All Rights Reserved.
</li>
</ul>
<ul class="footer-right">
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">About</a>
</li>
<li>
<a href="#">Download Now</a>
</li>
</ul>
</nav>
</footer>
</body>
</html>