-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmadlibs.html
More file actions
26 lines (20 loc) · 846 Bytes
/
madlibs.html
File metadata and controls
26 lines (20 loc) · 846 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="madlibs.css" rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="madlibs.js"></script>
<title>ScriptEd Unit 6 Project: Madlibs</title>
</head>
<body>
<div class="container">
<h1>ScriptEd Unit 6 Project: Madlibs</h1>
<hr/>
<input type="text" class="form-control input-lg" id="plural-noun-1" placeholder="Enter a plural noun">
<input type="text" class="form-control input-lg" id="verb" placeholder="Enter a verb">
<button onclick="generateMadlib()" class="btn btn-success btn-lg">Generate MadLib</button>
<div id="result"></div>
</div>
</body>
</html>