-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUniversityNotes.html
More file actions
executable file
·74 lines (65 loc) · 1.92 KB
/
Copy pathUniversityNotes.html
File metadata and controls
executable file
·74 lines (65 loc) · 1.92 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>University Notes</title>
<link rel="stylesheet" href="http://jquerymobile.com/demos/1.2.0/css/themes/default/jquery.mobile-1.2.0.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
<link href='http://fonts.googleapis.com/css?family=Cutive+Mono' rel='stylesheet' type='text/css'>
<style>
* {
text-align:center;
font-family: 'Cutive Mono';
margin-left: auto;
margin-right: auto;
}
h1{
color: crimson
}
td{
color: black
}
</style>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
<script src="http://jquerymobile.com/demos/1.2.0/docs/_assets/js/jqm-docs.js"></script>
<script type = "text/javascript"></script>
</head>
<center>
<h1> University Notes </h1>
<body>
<table>
<tr>
<td>
School Name
</td>
<td>
<input type="text" name="textfield">
</td>
</tr>
<tr>
<td>
Date of tour
</td>
<td>
<input type="text" name="textfield">
</td>
</tr>
<tr>
<td>
Comments
</td>
<td>
<textarea name = "Comments" style = "resize:none; width:300px; height:200px;"></textarea>
</td>
</tr>
<tr>
<td colspan = "2"><input type = "Submit" value = "Submit" name = "Submit">
</td>
</tr>
</select>
</form>
</body>
</center>
</html>