-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (38 loc) · 1.17 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
<!DOCTYPE html>
<html class="html" lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="distribution" content="global" />
<meta name="author" content="Борис Зашляпин" />
<link rel="stylesheet" href="./styles/index.css" />
<title>Карта</title>
</head>
<body>
<main>
<section class="map" aria-label="Карта с маркерами">
<div class="map__markers"></div>
</section>
</main>
<template class="btn-template">
<div class="btn">
<input
class="btn__input"
id=""
type="checkbox"
aria-label="Посмотреть подпись кнопки"
/>
<label class="btn__label" for="">
<span class="btn__label-wrapper">
<span class="btn__icon"></span>
<span class="btn__text"></span>
</span>
</label
>
</div>
</template>
<script src="./scripts/utils/constants.js"></script>
<script src="./scripts/utils/data/btns.js"></script>
<script src="./scripts/pages/index.js"></script>
</body>
</html>