-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheatsheet.html
23 lines (23 loc) · 1.06 KB
/
cheatsheet.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html>
<body>
<form>
<p><span class="required">*</span><label for=name>Name:</label><br>
<input type=text id=name required placeholder="First and Last Name" class="required">
<p><span class="required">*</span><label for=email>Email:</label><br>
<input type=email id=email required class="required email">
<p><label for=phone>Phone:</label><br>
<input type=text id=phone pattern="\([0-9]{3}\) [0-9]{3}-[0-9]{4}" placeholder="(###) ###-####">
<p><label for=url>URL:</label><br>
<input type=url id=URL>
<p><label for=description>Job Description:</label><br>
<textarea id=description required class="required"></textarea>
<p><label for=replyBy>Need response by:</label><br>
<input type=date id=replyBy required class="required">
<p><span class="required">*</span><label for=budget>How much can you spend?</label><br>
$<input type=number id=budget required min=300 max=5000 step=100 placeholder="Minimum $300" class="required">
<p>
<input type=submit value="Submit Request">
</form>
</body>
</html>