-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
27 lines (24 loc) · 961 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Contact Form</title>
<!-- Form styling -->
<link rel="stylesheet" href="css/formcarry-form.css" />
</head>
<body>
<div class="formcarry-container">
<form action="https://weird-development.xyz/form-process.php" method="POST" class="formcarry-form">
<label for="name">Your Name</label>
<input type="text" id="name" name="fullName" required />
<label for="email">Your Email Address</label>
<input type="email" id="email" name="email" required />
<label for="message">Your Message</label>
<textarea name="message" id="message" cols="30" rows="10"></textarea>
<button type="submit">Send</button>
</form>
</div>
</body>
</html>