-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (102 loc) · 5.21 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
<!DOCTYPE html>
<html lang="uk">
<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>Mimino</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./styles/modern-normalize.css">
<link rel="stylesheet" href="./styles/style.css">
<link rel="stylesheet" href="./styles/mobile.css">
<link rel="stylesheet" href="./styles/tablet.css">
<link rel="stylesheet" href="./styles/desktop.css">
</head>
<body class="page">
<div class="hero-main-background">
<header class="header" id="home">
<div class="container">
<div class="header-top">
<a class="logo" href="./index.html">MIMIHO</a>
<div class="box">
<nav class="navigation-first">
<a href="./" class="menu-link link">Ресторан</a>
</nav>
<div class="menu-first">
<a class="menu-contact link" href="tel:+380955559533">
<svg class="icon" width="24" height="24">
<use href="./images/icons-sprite.svg#icon-fluent_phone-24-regular"></use>
</svg>
<p class="phone">095 555 95 33</p>
</a>
</div>
<nav class="navigation-second">
<a href="./hotel.html" class="menu-link link">Готель</a>
</nav>
<div class="menu-second">
<a class="menu-contact link" href="tel:+380668491089">
<svg class="icon" width="24" height="24">
<use href="./images/icons-sprite.svg#icon-fluent_phone-24-regular"></use>
</svg>
<p class="phone">066 849 10 89</p>
</a>
</div>
</div>
</div>
</div>
</header>
<section class="hero">
<div class="container">
<h1 class="title">MIMIHO</h1>
<h2 class="sub-title">Ресторанно-готельний комплекс</h2>
<p class="pre-title">СМАК ЖИТТЯ 24/7</p>
<div class="hero-elements">
<a class="map-location" href="https://goo.gl/maps/nCRCqF7u8mZtbLEB7" target="_blank"
rel="noopener noreferrer nofollow">
<svg class="location-icon">
<use href="./images/icons-sprite.svg#icon-entypo_location-pin"></use>
</svg>
Україна, м. Полтава, <br>
вул. Маршала Бірюзова, 15
</a>
<button type="button" class="btn btn-right">
Забронювати столик
</button>
<button type="button" class="btn btn-shorter">
Забронювати номер
</button>
</div>
<ul class="soc-media list">
<li class="list-items">
<a href="https://www.instagram.com/" class="link" aria-label="Instagram" target="_blank"
rel="noopener noreferrer nofollow">
<svg class="soc-icon" width="24" height="24">
<use href="./images/icons-sprite.svg#icon-akar-icons_instagram"></use>
</svg>
</a>
</li>
<li class="list-items">
<a href="https://www.facebook.com/" class="link" aria-label="Facebook" target="_blank"
rel="noopener noreferrer nofollow">
<svg class="soc-icon" width="24" height="24">
<use href="./images/icons-sprite.svg#icon-jam_facebook"></use>
</svg>
</a>
</li>
<li class="list-items">
<a href="https://web.telegram.org/z/" class="link" aria-label="Telegram" target="_blank"
rel="noopener noreferrer nofollow">
<svg class="soc-icon" width="24" height="24">
<use href="./images/icons-sprite.svg#icon-la-telegram"></use>
</svg>
</a>
</li>
</ul>
</div>
</section>
</div>
</body>
</html>