-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (45 loc) · 2.04 KB
/
index.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap core CSS -->
<link href="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet" media="screen">
<!-- Custom CSS -->
<link rel="stylesheet" href="style.css" type="text/css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="http://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.2/html5shiv.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="col-md-12 text-center top-buffer">
<h1>Sick Day Excuse Generator</h1>
</div>
</div>
<div class="containter">
<div class="col-md-12 top-buffer text-center">
<div class="btn-group btn-group-lg">
<button type="button " class="btn btn-lg top-buffer" id="generate" onclick="addExcuse()">Generate!</button>
</div>
</div>
<div class="col-md-12 text-center top-buffer" id="excusesComplete">
<p></p>
</div>
</div>
<footer class="footer">
<div class="container">
<p>Remixed by <a href="https://github.com/AshMcD" target="_blank" class="href">AshMcD</a> View the original project <a href="https://thimble.mozilla.org/en-US/" target="_blank" class="href">Here</a></p>
</div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/js/bootstrap.min.js"></script>
<!-- Load in the js for generating excuses -->
<script src="excuses.js" type="text/javascript"></script>
</body>
</html>