-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
46 lines (39 loc) · 1.42 KB
/
Copy pathcontact.html
File metadata and controls
46 lines (39 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Form</title>
<!-- Link to your CSS file -->
<link rel="stylesheet" href="assets/styles.css">
<link rel="stylesheet" href="assets/flexboxes.css">
<link rel="stylesheet" href="assets/nav.css">
<link rel="stylesheet" href="assets/typography.css">
<link rel="stylesheet" href="assets/forms.css">
</head>
<body>
<div class="container">
<div class="title" >
BP HTML 03 Forms
</div>
<div>
<ul class="vertical-buttons">
<li><a href="index.html">Page 1</a></li>
<li><a href="page2.html">Page 2</a></li>
<li><a href="page3.html">Page 3</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<h1>Contact</h1>
<form action="confirmation.html" method="POST">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">E-mail:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="5" required></textarea>
<button type="submit">Submit</button>
</form>
</div>
</body>
</html>