forked from gminovska/RandomQuoteMachine
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
35 lines (31 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<title>Coding Inspiration Machine</title>
<meta charset="utf-8">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Merriweather:400i|Special+Elite" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>Coding Inspiration Machine</h1>
<h3>Get unstuck from coding blocks by seeing differently</h3>
</header>
<div id="main">
<div id="container">
<blockquote>
<p id="quote"></p>
<cite id="author"></cite>
</blockquote>
</div>
<div class="buttons">
<a id="github" href="https://github.com/ryandawsonuk/CodingInspirationMachine"><i class="fa fa-github fa-5x" aria-hidden="true"></i></button></a>
<button class="btn btn-default btn-circle btn-xl" id="next_quote"><i class="fa fa-chevron-right" aria-hidden="true"></i></button>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</div>
</body>
</html>