-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
161 lines (131 loc) · 4.76 KB
/
Copy pathindex.html
File metadata and controls
161 lines (131 loc) · 4.76 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="jumanjigobez">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Jumanji | Insure landing page</title>
<link rel="stylesheet" type="text/css" href="style/style.css">
<script src="script/script.js" defer></script>
</head>
<body>
<main>
<header id="header">
<div class="part_1">
<img src="images/logo.svg" alt="Insure Logo" class="logo">
</div>
<div class="part_2 menu_part">
<nav>
<li><a href="#">How we work</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Account</a></li>
<a href="#"><button class="btn">View Plans</button></a>
</nav>
</div>
<div class="mobile_menu">
<p onclick="openMenu()"><img src="images/icon-hamburger.svg" alt="Menu Button"></p>
</div>
</header>
<section id="hero">
<div class="part_1">
<h1 class="title">Humanizing your insurance.</h1>
<p> Get your life insurance coverage easier and faster. We blend our expertise and technology to help you find the plan that’s right for you. Ensure you and your loved ones are protected.</p>
<button class="btn btn2">View plans</button>
</div>
<div class="part_2">
</div>
<div class="patterns">
<div class="intro-left"></div>
<div class="intro-right"></div>
</div>
</section>
<section id="content_1">
<div class="part_1">
<h2>We’re different</h2>
</div>
<div class="part_2">
<div class="box">
<img src="images/icon-snappy-process.svg" alt="Snappy process icon">
<h3>Snappy Process</h3>
<p>Our application process can be completed in minutes, not hours. Don’t get stuck filling in tedious forms.</p>
</div>
<div class="box">
<img src="images/icon-affordable-prices.svg" alt="Affordable prices icon">
<h3>Affordable Prices</h3>
<p>We don’t want you worrying about high monthly costs. Our prices may be low, but we still offer the best coverage possible.</p>
</div>
<div class="box">
<img src="images/icon-people-first.svg" alt="People first icon">
<h3>People First</h3>
<p>Our plans aren’t full of conditions and clauses to prevent payouts. We make sure you’re covered when you need it.</p>
</div>
</div>
</section>
<section id="content_2">
<div class="part_1">
<h2>Find out more about how we work</h2>
</div>
<div class="pattern-right"></div>
<div class="part_2">
<button class="btn btn2">How we work</button>
</div>
</section>
<footer id="footer">
<div class="pattern"></div>
<div class="part_1">
<div class="logo_part">
<img src="images/logo.svg" alt="Insure Logo">
</div>
<div class="social">
<ul>
<li><a href=""><img src="images/icon-facebook.svg" alt="Facebook Icon"></a></li>
<li><a href=""><img src="images/icon-twitter.svg" alt="Twitter Icon"></a></li>
<li><a href=""><img src="images/icon-pinterest.svg" alt="Pinterest Icon"></a></li>
<li><a href=""><img src="images/icon-instagram.svg" alt="Instagram Icon"></a></li>
</ul>
</div>
</div>
<div class="part_2">
<div class="box">
<h3>Our company</h3>
<ul>
<li><a href="">How we work</a></li>
<li><a href="">Why Insure?</a></li>
<li><a href="">View plans</a></li>
<li><a href="">Reviews</a></li>
</ul>
</div>
<div class="box">
<h3>Help me</h3>
<ul>
<li><a href="">FAQ</a></li>
<li><a href="">Terms of use</a></li>
<li><a href="">Privacy policy</a></li>
<li><a href="">Cookies</a></li>
</ul>
</div>
<div class="box">
<h3>Contact</h3>
<ul>
<li><a href="">Sales</a></li>
<li><a href="">Support</a></li>
<li><a href="">Live chat</a></li>
</ul>
</div>
<div class="box">
<h3>Others</h3>
<ul>
<li><a href="">Careers</a></li>
<li><a href="">Press</a></li>
<li><a href="">Licenses</a></li>
</ul>
</div>
</div>
<div class="coder">
<small>Coded By <a href="https://jumanjigobez.github.io/personal_portfolio/" target="_blank" title="Personal Portfolio">Jumanji</a></small>
</div>
</footer>
</main>
</body>
</html>