forked from Afpia/coursework-save
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
119 lines (116 loc) · 5.08 KB
/
index.php
File metadata and controls
119 lines (116 loc) · 5.08 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Страховая компания Save's</title>
<link type="image/x-icon" rel="shortcut icon" href="../assets/favicon/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="../assets/favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="../assets/favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="../assets/favicon/favicon-16x16.png" />
<link type="image/png" sizes="192x192" rel="icon" href="../assets/favicon/android-chrome-192x192.png" />
<link rel="stylesheet" href="../css/style.css" />
</head>
<body data-barba="wrapper" class="">
<div class="app">
<div class="fade" data-barba="container" data-barba-namespace="home" style="overflow: hidden;">
<div class="preloader">
<div class="preloader__loader">
<img src="./assets/header/logo.png" alt="Logo" class=" preloader__logo" />
</div>
</div>
<header class="header">
<div class="header__gradient"></div>
<div class="wrapper">
<div class="header__inner">
<a data-off-click class="header__logo" href="./"><img src="./assets/header/logo.png" alt="Logo" class="logo" /></a>
<nav class="header__nav">
<ul class="header__list">
<a data-off-click href="./" class="header__nav-link active">
<li>Главная</li>
</a>
<a href="#choice" class="header__nav-link">
<li>Страхование</li>
</a>
<a href="#" class="header__nav-link">
<li>О нас</li>
</a>
</ul>
</nav>
<div class="header__right">
<button class="header__call">Позвонить</button>
<a href="./page/login.php" class="header__login"><img src="./assets/header/key.svg" alt="Key-login" class="header__key" />Войти</a>
</div>
</div>
</div>
</header>
<main>
<section class="home">
<div class="wrapper">
<div class="home__inner">
<h1 class="home__title">Save's страховая компания</h1>
<div class="home__benefits">
<div class="home__benefits-1">
<img src="./assets/index/asterisk.svg" alt="Asterisk" class="logo" />
<p>Наше страхование позволяет экономить страхователям 30% - 60%</p>
</div>
<div class="home__benefits-2">
<img src="./assets/index/asterisk.svg" alt="Asterisk" class="logo" />
<p>Мы предлагаем на выбор низкие цены страхования и включаем бесплатные дополнительные услуги.</p>
</div>
<a class="home__benefits-arrow" href="#choice">
<img src="./assets/index/bottom-arrow.png" alt="Arrow-bottom" />
</a>
</div>
<div class="home__block-img">
<img src="./assets/index/main.png" alt="Main-picture" class="home__img" />
</div>
</div>
</div>
</section>
<section class="choice" id="choice">
<div class="wrapper">
<div class="choice__inner">
<div class="choice__row">
<a href="#" class="choice__item-1 choice__item">
<img src="./assets/index/image-1.jpg" alt="1" />
<button class="choice__button">Страхование жилья</button>
</a>
<a href="#" class="choice__item-2 choice__item">
<img src="./assets/index/image-2.png" alt="2" />
</a>
<div class="choice__item-3">
<div class="choice__header">
<h2>Лучший выбор</h2>
<p>Не все страховки одинаковы. Поэтому поэтому агентство знает, что ваша страховка должно быть адаптировано к вашей ситуации.</p>
</div>
<button>Все услуги</button>
</div>
</div>
<div class="choice__row-second">
<a href="#" class="choice__item-4 choice__item">
<img src="./assets/index/image-3.png" alt="3" />
<button class="choice__button">Автострахование</button>
</a>
<a href="#" class="choice__item-5 choice__item">
<img src="./assets/index/image-4.png" alt="4" />
<button class="choice__button">Страхование ипотеки</button>
</a>
<a href="#" class="choice__item-6 choice__item">
<img src="./assets/index/image-5.png" alt="5" />
<button class="choice__button">Все для здоровья</button>
</a>
</div>
</div>
</div>
</section>
</main>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r121/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.birds.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@barba/core"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script>
<script type="module" src="../js/script.js"></script>
</body>
</html>