-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandfunction.html
More file actions
49 lines (38 loc) · 1.13 KB
/
randfunction.html
File metadata and controls
49 lines (38 loc) · 1.13 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
<!doctype html>
<html lang="en">
<head>
<link href="css/screen.css" type="text/css" rel="stylesheet" media="screen">
<meta charset="utf-8">
<title>Practice File</title>
<script type="text/javascript">
function select(){
var selector = Math.floor(Math.random() * 8);
document.getElementById("output").innerHTML = selector;
}
</script>
</head>
<body>
<div id="wrapper">
<header>
<h1>CIT 230</h1>
</header>
<main>
<p>Generate a random number from 20-0, hopefully.</p>
<button type="button" onClick="select()">Click Me</button>
<div id="output"></div>
</main>
<footer>
<ul>
<li>©2016</li>
<li>
<!--Add your name here, replacing this comment-->
</li>
<li>Last Updated:
<!-- Put today's date following the colon -->
</li>
</ul>
<p> </p>
</footer>
</div>
</body>
</html>