-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
34 lines (23 loc) · 952 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
<!DOCTYPE html>
<html lang="en" >
<head>
<title>Get Quotes - Get motivated with daily quotes!</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="Vinit Shahdeo">
<meta name="description" content="Get Quotes - A chrome extension to keep you motivated always!">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/png" href="./favicon.png">
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="test.js"></script>
</head>
<body>
<div id="result">
<blockquote>
<p><strong>If this is coffee,</strong> please bring me some tea; <strong>but if this is tea,</strong> please bring me some coffee.</p>
<cite>Abraham Lincoln</cite>
</blockquote>
</div>
</body>
</html>