-
Notifications
You must be signed in to change notification settings - Fork 0
/
task5_webForm.html
45 lines (45 loc) · 1.66 KB
/
task5_webForm.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<form action="./" method="">
<input type="text" name="name2" maxlength="12" value="your name" id="" />
<input type="text" name="mmkk2" maxlength="20" value="name" id="" /><br />
<input type="password" name="pass" maxlength="32" /> <br />
<label for="1">Site 1</label> <input type="checkbox" name="" id="1" />
<label for="2">Site 2</label> <input type="checkbox" name="" id="2" />
<label for="3">Site 3</label> <input type="checkbox" name="" id="3" />
<label for="4">Site 4</label> <input type="checkbox" name="" id="4" />
<br />
<select name="language" id="" size="2" multiple>
<option value="">HTML</option>
<option value="значение на латинеце на которое будет ссылаться Backend">
CSS
</option>
<option value="">PHP</option>
<option value="">SQL</option>
<option selected="" value="">PYTHON</option>
</select>
<input type="radio" name="" />
<input type="radio" name="" />
<input type="radio" name="" />
<br />
<textarea
name="text"
id=""
cols="30"
rows="5"
placeholder="Input your message"
></textarea
><br />
<input type="reset" name="" id="" />
<input type="submit" name="sub" value="Send" /><br />
<button type="submit">Button number 2</button>
</form>
</body>
</html>