-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (59 loc) · 2.4 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Insure Landing</title>
<link rel="icon" href="img/favicon.ico" type="image/x-icon"/>
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="nav">
<a href="#">
<img src="img/logo.svg" alt="">
</a>
<div class="nav_items_block">
<ul class="ulnavitems">
<li>
<a href="#" class="navlink"> HOW WE WORK </a>
</li>
<li>
<a href="#" class="navlink"> BLOG </a>
</li>
<li>
<a href="#" class="navlink"> ACCOUNT </a>
</li>
<li class="btnitem">
<a href="#" class="btnlink"> VIEW PLANS </a>
</li>
</ul>
</div>
<div class="navitems"></div>
</div>
<hr>
<div class="diffblock">
<h1 class="difftitle">We are different</h1>
<div class="iconlist">
<div class="snappy">
<img src="img/icon-snappy-process.svg" alt="" class="icon">
<h1 class="difficontitle">Snappy Process</h1>
<p class="diffdesc">Our application process can be completed in minutes, not hours. Don’t get stuck filling in tedious forms.</p>
</div>
<div class="afford">
<img src="img/icon-affordable-prices.svg" alt="" class="icon">
<h1 class="difficontitle">Affordable Prices</h1>
<p class="diffdesc">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="people">
<img src="img/icon-people-first.svg" alt="" class="icon">
<h1 class="difficontitle">Snappy Process</h1>
<p class="diffdesc">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>
</div>
</body>
</html>