-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
33 lines (33 loc) · 969 Bytes
/
contact.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="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact SafetyNet</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/report">Report</a></li>
</ul>
</nav>
</header>
<main>
<h1>Contact SafetyNet</h1>
<form action="/contact" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name"><br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email"><br><br>
<label for="message">Message:</label>
<textarea id="message" name="message"></textarea><br><br>
<input type="submit" value="Submit">
</form>
</main>
<script src="script.js"></script>
</body>
</html>