-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
139 lines (134 loc) · 6.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="index.css">
<title>Frontend Mentor | Insure landing page</title>
<link href="https://fonts.googleapis.com/css?family=DM+Serif+Display&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Karla&display=swap" rel="stylesheet">
</head>
<body>
<!-- Nav-bar -->
<section class="nav-section">
<nav class="nav-bar">
<div id="nav-logo">
<img src="./images/logo.svg" alt="logo" class="nav-logo">
</div>
<div class="nav-list">
<ul>
<li><a href="#">How we work</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Account</a></li>
<li><a href="#">View Plans</a></li>
</ul>
</div>
</nav>
</section>
<!-- Intro Section -->
<section class="intro-section">
<div>
<img class="intro-img" src="./images/image-intro-desktop.jpg" alt="intro-image">
</div>
<div class="intro-container">
<div class="intro-text">
<h1> Humanizing your insurance.</h1>
<p style="color: hsl(0, 0%, 98%);">
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"><a href="#">View Plans</a></button>
</div>
</div>
</section>
<div class="middle-container">
<section class="second-section">
<div class="wrap-container">
<span><h3> We’re different </h3> </span>
<div class="items-container">
<div class="items">
<img src="./images/icon-snappy-process.svg" alt="icon-snappy-process" class="icon">
<h4>Snappy Process</h4>
<p>
Our application process can be completed in minutes, not hours. Don’t get
stuck filling in tedious forms.
</p>
</div>
<div class="items">
<img src="./images/icon-affordable-prices.svg" alt="icon-affordable-prices" class="icon">
<h4>Affordable Prices</h4>
<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="items">
<img src="./images/icon-people-first.svg" alt="icon-people-first" class="icon">
<h4>People First</h4>
<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>
</div>
</section>
<!--Find More Section -->
<section class="find-more">
<div class="findmore-content">
<h4>Find out more about how we work </h4>
<button class="btn"> <a href="#">How we work</a></button>
</div>
</section>
</div>
<!--Footer section-->
<footer>
<div class="footer-container">
<div class="icons">
<img class="footer-logo" src="./images/logo.svg" alt="logo">
<ul class="footer-icons">
<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>
<hr>
<div class="info-list">
<ul class="footer-list">
<span> <h4>Our company</h4> </span>
<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>
<ul class="footer-list">
<span> <h4>Help me</h4> </span>
<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>
<ul class="footer-list">
<span> <h4>Contact</h4> </span>
<li><a href="#">Sales</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">Live Chat</a></li>
</ul>
<ul class="footer-list">
<span> <h4>Others</h4> </span>
<li><a href="#">Careers</a></li>
<li><a href="#">Press</a></li>
<li><a href="#">Licenses</a></li>
</ul>
</div>
</div>
<div class="attribution">
Challenge by <a target="_blank" rel="noopener" href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a target="_blank" rel="noopener" href="https:/twitter.com/michaelhungbo">Michael Hungbo</a>.
</div>
</footer>
</body>
</html>