forked from magrawal-USF/Javascript-JQuery-Charting
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathL5-HTMLPage22.html
More file actions
38 lines (31 loc) · 1.05 KB
/
L5-HTMLPage22.html
File metadata and controls
38 lines (31 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>JQuery UI</title>
<script src="https://code.jquery.com/jquery-3.2.1.js"
integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE="
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"
integrity="sha256-T0Vest3yCU7pafRw9r+settMBX6JkKN06dqBnpQ8d30="
crossorigin="anonymous"></script>
<link href="http://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css"
rel="stylesheet">
<script type="text/javascript">
$(document).ready(function () {
$("input").datepicker();
});
</script>
</head>
<body>
<h1>JQuery UI demo</h1>
<form>
First name: <input type="text" name="firstname"><br>
Last name: <input type="text" name="lastname">
</form>
<h1 id="schoolProp-1">Founded: 1956</h1>
<h1 id="schoolProp-2">Undergraduates: 37,027</h1>
<h1 id="schoolProp-3">Graduate Students: 10,810</h1>
<div id="log"></div>
</body>
</html>