-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
30 lines (25 loc) · 867 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
<!DOCTYPE html>
<html>
<head>
<title>Q-Quote Generator </title>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css" type="text/css" />
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<div class="shade">
<header>
<h1>Q-Quote Generator</h1>
<p>Click the button to get a quote!</p>
</header>
<blockquote class="quote">
<div id="quote" class="tweet-style"></div>
<p id="author" class="tweet-style"></p>
</blockquote>
<a type="submit" class="btn" href="#">Get a new Quote!</a>
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=%data%">Tweet quote</a>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-beta1/jquery.min.js"> </script>
<script src="app.js"> </script>
</body>
</html>