-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteamReadiness1.html
59 lines (50 loc) · 2.26 KB
/
teamReadiness1.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang = "en">
<head>
<title>Joshua Comish</title>
<link rel="stylesheet" type="text/css" href="Jomish.css">
<meta http-equiv="X-UA-Compatible" content="IE=edge" charset="utf-8"/>
</head>
<header>
</br>
<h4><a href="index.html" onMouseOver="this.style.color='White'" onMouseOut="this.style.color='Orange'">Home</a> </h4>
<h4><a href="assign032.html" onMouseOver="this.style.color='White'" onMouseOut="this.style.color='Orange'">Projects</a> </h4>
<h4><a href="assignments.html" onMouseOver="this.style.color='White'" onMouseOut="this.style.color='Orange'">Assignments</a></h4>
</br>
</br>
</header>
<form action="teamReadiness1.php" method="post">
<div>
<br/>
<br/>
<p2>First Name: </p2><br/>
<input type="text" name="name">
<br/>
<p2>Email: </p2><br/>
<input type="text" name="email">
<br/>
<br/>
<p2>Major: </p2><br/>
<input type="radio" name="major" value="Computer Science"><p2>Computer Science</p2><br/>
<input type="radio" name="major" value="Web Development and Design"><p2>Web Development and Design</p2><br/>
<input type="radio" name="major" value="Computer Information Technology"><p2>Computer Information Technology</p2><br/>
<input type="radio" name="major" value="Computer Engineering"><p2>Computer Engineering</p2><br/>
<br/>
<br/>
<p2>Countries I have visited: </p2><br/>
<input type="checkbox" name="item1"/><p2>North America</p2><br/>
<input type="checkbox" name="item2"/><p2>South America</p2><br/>
<input type="checkbox" name="item3"/><p2>Europe</p2><br/>
<input type="checkbox" name="item4"/><p2>Asia</p2><br/>
<input type="checkbox" name="item5"/><p2>Austrailia</p2><br/>
<input type="checkbox" name="item6"/><p2>Africa</p2><br/>
<input type="checkbox" name="item7"/><p2>Antarctica</p2><br/>
<br/>
<br/>
<p2>Comments: </p2><br/>
<input type="textarea" name="comments"><br/><br/><br/>
<input type="submit" name="submit" value="Submit" />
<input type="reset" value="Reset" />
</div>
</form>
</html>