-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblank.html
More file actions
268 lines (223 loc) · 8.66 KB
/
Copy pathblank.html
File metadata and controls
268 lines (223 loc) · 8.66 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Пример HTML-страницы — много элементов</title>
<link rel="stylesheet" href="eelibs/import.css">
</head>
<body>
<header>
<h1>Демо-страница с множеством HTML-элементов</h1>
<nav>
<a href="#forms">Формы</a> | <a href="#tables">Таблицы</a> | <a href="#media">Медиа</a> | <a href="#extras">Прочее</a>
</nav>
</header>
<section id="intro">
<h2>Введение</h2>
<p>Это простая HTML-страница <strong>без CSS</strong>, в которой показаны разные HTML-элементы: поля ввода, формы, таблицы, списки, семантические теги и мультимедиа.</p>
<p>Ниже — несколько типичных блоков контента.</p>
</section>
<section id="forms">
<h2>Формы и поля ввода</h2>
<form action="#" method="post">
<fieldset>
<legend>Личные данные</legend>
<label for="fullname">ФИО:</label>
<input type="text" id="fullname" name="fullname" placeholder="Иван Иванов"><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="name@example.com"><br>
<label for="password">Пароль:</label>
<input type="password" id="password" name="password"><br>
<label for="phone">Телефон:</label>
<input type="tel" id="phone" name="phone" placeholder="+373 79 123456"><br>
<label for="age">Возраст (число):</label>
<input type="number" id="age" name="age" min="0" max="150"><br>
<label for="birthday">Дата рождения:</label>
<input type="date" id="birthday" name="birthday"><br>
<label for="appt">Время/дата (другой формат):</label>
<input type="datetime-local" id="appt" name="appt"><br>
<label for="range">Уровень (range):</label>
<input type="range" id="range" name="range" min="0" max="10" value="5"><br>
<label for="color">Любимый цвет:</label>
<input type="color" id="color" name="color"><br>
<label for="search">Поиск:</label>
<input type="search" id="search" name="search"><br>
<label for="website">Сайт:</label>
<input type="url" id="website" name="website" placeholder="https://example.com"><br>
<label>Пол:</label>
<input type="radio" id="male" name="gender" value="male"><label for="male">М</label>
<input type="radio" id="female" name="gender" value="female"><label for="female">Ж</label><br>
<label for="subscribe">Подписаться:</label>
<label for="subscribe" class="oneui-switch">
<input type="checkbox" id="subscribe" name="subscribe">
<span class="slider"></span>
</label>
<label for="country">Страна:</label>
<select id="country" name="country">
<option value="md">Молдова</option>
<option value="ro">Румыния</option>
<option value="ru">Россия</option>
</select><br>
<label for="comments">Комментарий:</label><br>
<textarea id="comments" name="comments" rows="4" cols="40" placeholder="Напишите здесь..."></textarea><br>
<label for="file">Файл (загрузить):</label>
<input type="file" id="file" name="file"><br>
<input type="hidden" name="token" value="abc123">
</fieldset>
<fieldset>
<legend>Данные с автозаполнением и подсказками</legend>
<label for="city">Город (datalist):</label>
<input list="cities" id="city" name="city">
<datalist id="cities">
<option value="Кишинёв">
<option value="Тирасполь">
<option value="Бельцы">
<option value="Кишинёв-центр">
</datalist><br>
<label for="quantity">Количество (step 0.5):</label>
<input type="number" id="quantity" name="quantity" step="0.5"><br>
<button type="submit">Отправить</button>
<button type="reset">Сброс</button>
</fieldset>
</form>
<details>
<summary>Дополнительные опции</summary>
<p>Здесь можно положить скрытый текст или дополнительные настройки формы.</p>
<label for="opt1">Опция 1</label>
<input type="checkbox" id="opt1" name="opt1"><br>
<label for="opt2">Опция 2</label>
<label for="opt2" class="oneui-switch">
<input type="checkbox" id="opt2" name="opt2">
<span class="slider"></span>
</label>
</details>
</section>
<section id="tables">
<h2>Таблицы</h2>
<table border="1">
<caption>Пример табличных данных</caption>
<thead>
<tr>
<th>#</th>
<th>Имя</th>
<th>Роль</th>
<th>Активный</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Мария</td>
<td>Разработчик</td>
<td>Да</td>
</tr>
<tr>
<td>2</td>
<td>Алексей</td>
<td>Тестировщик</td>
<td>Нет</td>
</tr>
<tr>
<td>3</td>
<td>Ольга</td>
<td>Дизайнер</td>
<td>Да</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="4">Итого: 3 пользователя</td>
</tr>
</tfoot>
</table>
<h3>Сложная таблица</h3>
<table border="1">
<tr>
<th rowspan="2">Регион</th>
<th colspan="2">Показатели</th>
</tr>
<tr>
<th>В</th>
<th>Н</th>
</tr>
<tr>
<td>Север</td>
<td>100</td>
<td>200</td>
</tr>
</table>
</section>
<section id="lists">
<h2>Списки и цитаты</h2>
<ul>
<li>Пункт один</li>
<li>Пункт два
<ol>
<li>Вложенный 1</li>
<li>Вложенный 2</li>
</ol>
</li>
<li>Пункт три</li>
</ul>
<blockquote cite="#">
Это пример цитаты.
</blockquote>
<pre><code>const hello = "Hello, world!";
console.log(hello);</code></pre>
</section>
<section id="media">
<h2>Медиа</h2>
<figure>
<img src="https://via.placeholder.com/300x100?text=Image" alt="Заглушка">
<figcaption>Подпись к картинке</figcaption>
</figure>
<audio controls>
<source src="" type="audio/mpeg">
Ваш браузер не поддерживает аудио.
</audio>
<video controls width="320">
<source src="" type="video/mp4">
Ваш браузер не поддерживает видео.
</video>
<div>
<progress value="70" max="100">70%</progress>
<meter value="0.6">60%</meter>
</div>
</section>
<section id="extras">
<h2>Дополнительные элементы</h2>
<article>
<header>
<h3>Статья</h3>
<p><small>Автор: Тестовый</small></p>
</header>
<p>Содержимое статьи...</p>
<footer>Дата публикации: <time datetime="2025-10-06">2025-10-06</time></footer>
</article>
<aside>
<h4>Боковая панель</h4>
<p>Краткая справка или реклама.</p>
</aside>
<form>
<label for="range2">Еще слайдер:</label>
<input id="range2" type="range">
<button type="button" onclick="alert('Кнопка нажата')">Нажми меня</button>
</form>
<iframe src="about:blank" title="Пустой фрейм" width="300" height="150"></iframe>
<details>
<summary>Развернуть технические данные</summary>
<dl>
<dt>HTML</dt>
<dd>Стандарт разметки страниц</dd>
<dt>Version</dt>
<dd>Без стилей</dd>
</dl>
</details>
</section>
<footer>
<p>Сгенерировано автоматически — пример страницы с множеством элементов.</p>
</footer>
</body>
<script src="css/!.js"></script>
</html>