forked from crc78/assignment2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (55 loc) · 2.24 KB
/
index.html
File metadata and controls
55 lines (55 loc) · 2.24 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Assignment 2- JS Schtuffs</title>
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<div id="main">
<h1>Fill out the following information:</h1>
<div id="formArea">
<form id="myForm">
<div class="text">
<label for="fname">First Name</label>
<input id="fname" type="text" name="First Name" data-placeholder="Enter First Name"/>
</div>
<div class="text">
<label for="lname">Last Name</label>
<input id="lname" type="text" name="Last Name" data-placeholder="Enter Last Name"/>
</div>
<div class="text">
<label for="carMake">Car Make</label>
<input id="carMake" type="text" name="Car Make" data-placeholder="Enter Car Make"/>
</div>
<div class="text">
<label for="carModel">Car Model</label>
<input id="carModel" type="text" name="Car Model" data-placeholder="Enter Car Model"/>
</div>
<div class="radio">
<label>Select Engine Type</label>
<input type="radio" name="Engine Type" value="V6" id="v6"/>
<label for="v6">V6</label>
<input type="radio" name="Engine Type" value="V8" id="v8"/>
<label for="v8">V8</label>
<input type="radio" name="Engine Type" value="V10" id="v10"/>
<label for="v10">V10</label>
<input type="radio" name="Engine Type" value="V12" id="v12"/>
<label for="v12">V12</label>
<input type="radio" name="Engine Type" value="W16" id="w16"/>
<label for="w16">W16</label>
</div>
<div class="textarea">
<label id="TA">Enter More information on your vehicle</label>
<textarea name="More Information" id="TA" data-placeholder="Enter More information...."></textarea>
</div>
<div class="submit">
<input type="submit" value="Click to submit" />
</div>
</form>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="./js/jquery.validation.js"></script>
</body>
</html>