-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (60 loc) · 2.63 KB
/
index.html
File metadata and controls
64 lines (60 loc) · 2.63 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ConcertFinder — Найдите выступления в вашем городе</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<div class="logo">
<h1>GigFinder</h1>
</div>
<p class="tagline">Открой для себя мир живой музыки</p>
</div>
</header>
<main class="container">
<section class="hero">
<h2>Найдите подходящую вам площадку, чтобы хорошо провести вечер</h2>
<p>Клубные концерты, акустические вечера, джем-сейшены и многое другое</p>
<div class="city-selection">
<h3>Выберите ваш город</h3>
<div class="city-grid">
<a href="msk_map.html" class="city-card">
<i class="fas fa-building"></i>
<span>Москва</span>
</a>
<a href="spb_map.html" class="city-card">
<i class="fas fa-water"></i>
<span>Санкт-Петербург</span>
</a>
</div>
</div>
</section>
<section class="features">
<h2>Как это работает?</h2>
<div class="features-grid">
<div class="feature">
<i class="fas fa-map-marked-alt"></i>
<h3>Выберите город</h3>
<p>Найдите свой город в списке или введите его название</p>
</div>
<div class="feature">
<i class="fas fa-music"></i>
<h3>Изучите площадки</h3>
<p>Посмотрите, где и кто сегодня выступает</p>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p>GigFinder © 2026 — Все права защищены.</p>
</div>
</footer>
</body>
</html>