-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 957 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Random Quotes</title>
<!-- bower:css -->
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css">
<!-- endinject -->
<!-- inject:css -->
<link rel="stylesheet" href="/src/content/main.css">
<!-- endinject -->
</head>
<body>
<div class='container'>
<div class="page-header">
<h2>Random Quotes</h2>
</div>
<button type="button" class="btn btn-primary btn-lg btn-block" onclick='nextQuote()'>Next Quote</button>
</br>
<div class="jumbotron">
<h1>This is a Heading</h1>
</br>
<p>This is a paragraph.</p>
</div>
</div>
<!-- bower:js -->
<script src="/bower_components/jquery/dist/jquery.min.js"></script>
<script src="/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="/bower_components/angular/angular.min.js"></script>
<!-- endinject -->
<!-- inject:js -->
<script src="/src/app/main.js"></script>
<!-- endinject -->
</body>
</html>