-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 818 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (27 loc) · 818 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/main.css" />
<title>Document</title>
</head>
<body>
<h1>HTML form with CSS subgrid</h1>
<form>
<label for="name" class="field">
<span class="label-text">Full Name</span>
<input type="text" id="name" />
</label>
<label for="email" class="field">
<span class="label-text">E-mail</span>
<input type="email" id="email" />
</label>
<label for="message" class="field">
<span class="label-text">Message</span>
<textarea type="text" id="message"></textarea>
</label>
<button type="submit">Send!</button>
</form>
</body>
</html>