-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.html
33 lines (33 loc) · 1.12 KB
/
forms.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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formularze testowe</title>
<link a href="normalize.css" rel="stylesheet" type="text/css"/>
<link a href="style.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<main>
<h1>Formularz testowy</h1>
<form class="form">
<p>
<label for="firstName">Imię:</label>
<input class="form_item" type="text" value="Karol" id="firstName" name="firstName">
</p>
<p>
<label for="surname">Nazwisko:</label>
<input class="form_item" type="text" placeholder="Mazan" id="surname" name="surname">
</p>
<p>
<label for="phone">Numer telefonu:</label>
<input class="form_item" type="tel" placeholder="komorkowy lub stacjonarny" id="phone" name="phone">
</p>
<p>
<label>Ulubiony numer:</label>
<input class="form_item" type="number" placeholder="123456789" id="favouriteNumber" name="favouriteNumber">
</p>
</form>
</main>
</body>
</html>