-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (70 loc) · 2.36 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
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<title>PWS A6 заготовка</title>
</head>
<body>
<h1 class="container">Если вы это видите, значит оно работает</h1>
<form class="container">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="check1">
<label class="form-check-label" for="check1">
флажок 1
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="check2">
<label class="form-check-label" for="check2">
флажок 2
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="check3">
<label class="form-check-label" for="check3">
флажок 3
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="check4">
<label class="form-check-label" for="check4">
флажок 4
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="check5">
<label class="form-check-label" for="check5">
флажок 5
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="radios" id="radios1" value="option1">
<label class="form-check-label" for="radios1">
опция 1
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="radios" id="radios2" value="option2">
<label class="form-check-label" for="radios2">
опция 2
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="radios" id="radios3" value="option3">
<label class="form-check-label" for="radios3">
опция 3
</label>
</div>
</form>
<div class="container">
<button type="button" class="btn btn-dark">А это просто тёмная кнопка</button>
</div>
<a class="container" href="carousel.html">Carousel</a>
</div>
<script src="./js/jquery-3.4.1.min.js"></script>
<script src="./js/bootstrap.bundle.min.js"></script>
<script src="./js/script-a6.js"></script>
</body>
</html>