-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (146 loc) · 6.17 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Mars | New generation of flying.</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css" />
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,900" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="header__navbar">
<nav class="navigation">
<div class="navigation__logo-box">
<div class="logo">
Mars
</div>
<div class="phone-number">
<svg class="phone-number__icon">
<use xlink:href="/img/sprite.svg#icon-phone"></use>
</svg>
<span class="phone-number__text">+45 604 300 500</span>
</div>
</div>
<div class="navigation__menu-box">
<a href="#" class="buy-now">Buy Now</a>
<a href="#" class="hamburger">
<span class="hamburger__line"></span>
</a>
</div>
</nav>
</div>
<div class="header__left">
<div class="header__left-flex">
<div class="header__slider-box">
<div class="empty"></div>
<div class="slider-dots">
<div class="slider-dots__dot"></div>
<div class="slider-dots__dot slider-dots__dot--active"></div>
<div class="slider-dots__dot"></div>
<div class="slider-dots__dot"></div>
</div>
<div class="header__scroll-box">
<span class="header__scroll">Scroll down</span>
</div>
</div>
<div class="header__text-box">
<h1 class="heading-1">Phantom</h1>
<h6 class="heading-6">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eget euismod dolor.</h6>
</div>
</div>
</div>
<div class="header__right">
<div class="header__image-box">
<img src="/img/drone.png" alt="MARS Phantom" class="header__image">
</div>
<div class="header__heading-huge">
<h1 class="heading-hero">Mars</h1>
</div>
</div>
</header>
<section class="promo">
<div class="promo__left">
<div class="promo__tap-to-fly">
<h2 class="promo__heading">Tap to fly</h2>
<h6 class="promo__subheading">Lorem ipsum dolor sit amet.</h6>
</div>
<div class="promo__left-circle promo__left-circle--1"></div>
<div class="promo__left-circle promo__left-circle--2"></div>
<div class="promo__left-circle promo__left-circle--3"></div>
</div>
<div class="promo__right">
<div class="promo__fly-higher">
<div class="promo__fly-higher-text-box">
<h2 class="promo__heading promo__heading--light">Fly higher than before</h2>
</div>
</div>
<div class="promo__right-bigger">
<div class="promo__button">
<div class="promo__button-white-line"></div>
<a href="#" class="promo__btn">View more</a>
</div>
</div>
</div>
</section>
<section class="features">
<div class="features__content">
<h2 class="heading-3">Features</h2>
<div class="features__grid">
<div class="features__feature">
<img src="/img/new-technology.png" alt="New Technology" class="features__image">
<span class="features__text">New Technology</span>
</div>
<div class="features__feature">
<img src="/img/good-signal.png" alt="Good Signal" class="features__image">
<span class="features__text">Good Signal</span>
</div>
<div class="features__feature">
<img src="/img/easy-to-use.png" alt="Easy to use" class="features__image">
<span class="features__text">Easy to use</span>
</div>
<div class="features__feature">
<img src="/img/visibility.png" alt="Visibility" class="features__image">
<span class="features__text">Visibility</span>
</div>
</div>
</div>
</section>
<section class="promo-cta">
<div class="promo-cta__image"></div>
<div class="promo-cta__cta">
<div class="promo-cta__content">
<h2 class="promo-cta__text">New <span class="u-text-primary">generation</span> of vision<span class="u-text-primary">.</span></h2>
<a href="#" class="promo-cta__button">View More</a>
</div>
<svg class="promo-cta__icon">
<use xlink:href="/img/sprite.svg#icon-drone-2"></use>
</svg>
</div>
</section>
<section class="products">
<div class="products__content">
<h2 class="products__text">New <span class="u-text-primary">generation</span> of flying<span class="u-text-primary">.</span></h2>
<a href="#" class="products__button">Products</a>
</div>
</section>
<section class="journey">
<div class="journey__content">
<h2 class="journey__text">Start your journey.</h2>
<a href="#" class="journey__button">View more</a>
</div>
</section>
<footer class="footer">
<div class="footer__bg" unselectable>
Phantom
</div>
<div class="footer__content">
<div class="logo">
Mars
</div>
<span class="footer__credits">2018 Copyright. All rights reserved by Symu.co.</span>
</div>
</footer>
</body>
</html>