-
Notifications
You must be signed in to change notification settings - Fork 0
/
six.html
34 lines (31 loc) · 1.05 KB
/
six.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/jquery-ui.css">
<title>Lab 5 - Six</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$(function () {
$(document).tooltip();
});
</script>
<style>
label {
display: inline-block;
width: 5em;
}
</style>
</head>
<body>
<div id="contentPad">
<p>
<strong>Roll over the answer box for hints:</strong>
</p>
<p><label for="question">Who created Defendo?:</label><input id="answer" title="Defendo is a Canadian martial art and a self defence system created in 1945. Defendo was created for law enforcement structures."></p>
<p>Hover the field to see the tooltip.</p>
</body>
</html>