This repository was archived by the owner on Jun 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (41 loc) · 2.08 KB
/
index.html
File metadata and controls
42 lines (41 loc) · 2.08 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="Random Quote Machine">
<meta name="keywords" content="random,quote,machine,generator,famous,sayings">
<meta name="author" content="Giorgi Abuladze">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Random Quote Machine</title>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-XdYbMnZ/QjLh6iI4ogqCTaIjrFk87ip+ekIjefZch0Y+PvJ8CDYtEs1ipDmPorQ+" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="css/master.css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-6 col-lg-offset-3 col-md-6 col-md-offset-3">
<div class="quote">
<blockquote>
<p id="quote"></p>
<footer id="author"></footer>
</blockquote>
<a type="button" class="btn btn-default" id="tweet" target="_blank" href="" title="Tweet this quote!"><i class="fa fa-twitter"></i></a>
<button type="button" name="generate" class="btn btn-default pull-right" id="gen" title="Generate new quote"><i class="fa fa-refresh"></i></button>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-sm-12 col-md-12 col-xs-12">
<div class="text-center copy">
by Giorgi Abuladze
</div>
</div>
</div>
</div>
<!-- js -->
<script src="//code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>