-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
28 lines (28 loc) · 908 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Contact</h1>
<h2 style="color: white">Get in touch!</h2>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About Me</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
<form action="submit.html">
<label for="name">Name:</label>
<input type="text" name="name" id="name" required />
<label for="email">Email:</label>
<input type="email" name="email" id="email" required />
<label for="message">Message:</label>
<textarea name="message" id="message" required></textarea>
<input type="submit" value="Submit" />
</form>
</body>
</html>