-
Notifications
You must be signed in to change notification settings - Fork 0
/
sbdcontact.html
42 lines (36 loc) · 1.35 KB
/
sbdcontact.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
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title> ✌;Scott's Second Personal Website</title>
</head>
<body>
<h1>Scott's Contact Information</h1>
<ul>
<li><h2>Phone: 123-456-7890</h2></li>
<li><h2>Address: 1234 Lake Smith Lane, City, US 12345</h2></li>
<li><h2>email: 12345sbd@gmail.com</h2></li>
</ul>
<form action="mailto:sdavisb@gmail.com" method="post" enctype="text/plain">
<div class="form-example">
<label for="Your name">Enter your name: </label>
<input type="text" name="name" id="name" required>
</div>
<div class="form-example">
<label for="Your email">Enter your email: </label>
<input type="email" name="email" id="email" required>
</div>
<div class="form-example">
<label for="Do you want to sign up for the email list">Check Yes to Receive Newsletter</label>
<input type="checkbox" name="" value="Yes">
</div>
<div class="form-example">
<label for="password">Enter your password</label>
<input id="prodId" name="prodId" type="" value="" class="visuallyhidden"><br><br>
<label for="Message">Message</label><br>
<textarea name="yourMessage" rows="10" cols="30"></textarea><br><br>
</div>
<div class="form-example">
<input type="submit" value="Contact Me!"><br>
</form>
</body>