-
Notifications
You must be signed in to change notification settings - Fork 287
/
plain.html
55 lines (51 loc) · 2.06 KB
/
plain.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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>Рейтинг: Простой</title>
<style>
body {
margin: 0;
padding: 25px;
font-family: sans-serif;
}
/* Rating */
.rating {
margin: 0 0 1em 0;
padding: 0;
border: none;
}
/* Caption */
.rating__caption {
margin-bottom: 0.5em;
padding: 0;
}
</style>
</head>
<body>
<fieldset class="rating">
<legend class="rating__caption">Самочувствие</legend>
<input type="radio" name="health" value="1" aria-label="Ужасно" checked>
<input type="radio" name="health" value="2" aria-label="Сносно">
<input type="radio" name="health" value="3" aria-label="Нормально">
<input type="radio" name="health" value="4" aria-label="Хорошо">
<input type="radio" name="health" value="5" aria-label="Отлично">
</fieldset>
<fieldset class="rating">
<legend class="rating__caption">Настроение</legend>
<input type="radio" name="mood" value="1" aria-label="Ужасно">
<input type="radio" name="mood" value="2" aria-label="Сносно">
<input type="radio" name="mood" value="3" aria-label="Нормально" checked>
<input type="radio" name="mood" value="4" aria-label="Хорошо">
<input type="radio" name="mood" value="5" aria-label="Отлично">
</fieldset>
<fieldset class="rating">
<legend class="rating__caption">Вообще</legend>
<input type="radio" name="general" value="1" aria-label="Ужасно">
<input type="radio" name="general" value="2" aria-label="Сносно">
<input type="radio" name="general" value="3" aria-label="Нормально">
<input type="radio" name="general" value="4" aria-label="Хорошо">
<input type="radio" name="general" value="5" aria-label="Отлично" checked>
</fieldset>
</body>
</html>