-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (45 loc) · 2.09 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
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<title>Need an excuse</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
<link rel="stylesheet" href="css/styles.css" />
<script type="text/javascript" async src="js/jquery-3.5.1.min.js"></script>
<script type="text/javascript" async src="js/bootstrap/bootstrap.min.js"></script>
<script type="text/javascript" async src="js/main.js"></script>
</head>
<body>
<div class="container">
<div class="jumbotron" style="text-align: center;">
<h1 class="display-3" style="line-height: 86px;">
<h2>
When you need a perfectly legitimate excuse to say no
</h2>
</h1>
<p class="lead">
<div class="form-group" style="text-align: center;">
<input type="text" id="situation" class="form-control" placeholder="Whats your situation..?" style="text-align: center; width: 400px; float: none; position: static; display: inline;">
</div>
</p>
<div style="text-align: center;">
<button type="button" class="btn btn-lg btn-success" onclick="getSituation();">Give me the excuse!</button>
<!-- <a class="btn btn-lg btn-success" href="#" role="button">Get an excuse</a> -->
</div>
<hr style="">
<div class="row" style=""></div>
<h3 id="excuse" class="text-muted" style="float: none; text-align: center;"></h3>
</div>
<div class="row marketing">
<div class="col-lg-6" style="text-align: center;"></div>
<div class="col-lg-6"></div>
</div>
<footer class="footer">
<p>© Company 2017</p>
</footer>
</div>
</body>
</html>