-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
129 lines (111 loc) · 5.27 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Appilicous</title>
<link href = "css/style.css" rel="stylesheet"/>
</head>
<body>
<header class="main-header">
<div class="container grid">
<div class="logo"><img src="./img/logo.svg" alt="Appilicous logo"></div>
<nav class="main-nav">
<ul class="unstyled-list nav-list">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<div class="nav-toggle">
<div class="hamburger"></div>
</div>
</div>
</header>
<!--Hero section-->
<section class="hero">
<div class="container grid">
<div class="hero-text col col--2-3">
<h1 class="title-large"><span>TAKE YOUR APP TO THE</span> NEXT LEVEL</h1>
<p class="intro-text">
The perfect landing page for your app, whatever it might be. Show off the apps features, show some sexy pictures and get more people do download it today.
</p>
<a href="#" class="btn btn--secondary">Learn more</a>
<a href="#" class="btn btn--primary">Get the app</a>
</div>
<div class="col col--1-3"><img class="lg--screen" src="./img/phone.png" alt=""></div>
</div>
</section>
<!-- Promo section -->
<section class="sales-points">
<div class="container grid">
<h1 class="col col--full">Promote your app</h1>
<div class="sales-point col col--1-3">
<img src="./img/sales-hand.png" alt="sales hand">
<h2>RESPONSIVE DESIGN</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus hendrerit posuere finibus. Phasellus nibh lorem, cursus eu justo in, bibendum rutrum diam.</p>
</div>
<div class="sales-point col col--1-3">
<img src="./img/sales-responsive.png" alt="sales responsive">
<h2>EASY TO SET UP</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus hendrerit posuere finibus. Phasellus nibh lorem, cursus eu justo in, bibendum rutrum diam.
</p>
</div>
<div class="sales-point col col--1-3">
<img src="./img/sales-graph.png" alt="sales graph">
<h2>GREAT RESULTS</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus hendrerit posuere finibus. Phasellus nibh lorem, cursus eu justo in, bibendum rutrum diam.</p>
</div>
</div>
</section>
<!-- about section -->
<section class="about">
<div class="title-box">
<h1>this app is amazing</h1>
<p>It does everything you didn;t kow an app needed to do.</p>
</div>
<div class="grid">
<div class="col col--1-2 bg-primary">
<h1>DOING GREAT THINGS FOR YOU</h1>
<h2>PHASELLUS HENRERIT PSOEUERE
</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus hendrerit posuere finibus. Phasellus nibh lorem, cursus eu justo in, bibendum rutrum diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur. Phasellus hendrerit posuere finibus. Phasellus nibh lorem, cursus eu justo in, bibendum rutrum diam.</p>
<a href="#" class="btn btn--primary">get the app</a>
</div>
<div class="lg--screen col--1-2 col img-box"></div>
</div>
</section>
<!--CTA-->
<section class="cta">
<div class="container container--cta">
<p class="text-large">You made it to the bottom and you still aren’t sure?</p>
<h1 class="title-large">SHOWCASE THE GREATNESS TODAY</h1>
<a href="#" class="btn btn--primary">get the app</a>
</div>
</section>
<!-- footer -->
<footer>
<div class="container container--footer">
<p class="text-footer">TAKE YOUR APP TO THE NEXT LEVEL</p>
<ul class="unstyled-list social-links">
<li><a href="#"><i class="fa fa-twitter-square" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-facebook-square" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-youtube-square" aria-hidden="true"></i></a></li>
</ul>
<ul class="unstyled-list nav-footer">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</footer>
<script src="https://kit.fontawesome.com/4f71b06535.js" crossorigin="anonymous"></script>
<script src="./js/main.js"></script>
</body>
</html>