-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
30 lines (27 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Random Quote Machine</title>
<meta name="description" content="Random Quote Generator">
<meta name="author" content="Aung Myo Kyaw">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.1/animate.min.css">
<script type="text/javascript" src="js/index.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<a href="https://github.com/AungMyoKyaw/rqm" class="folkme" target="_blank">
<img src="https://s3.amazonaws.com/github/ribbons/forkme_left_orange_ff7600.png" alt="forkme">
</a>
<div class="container">
<h1><a href="">Random Quote Machine</a></h1>
<p id="quote"></p>
<p id="author"></p>
<input type="button" id="new" value="New Quote">
<input type="button" id="tweet" value="Tweet">
<p class="credit">By Aung Myo Kyaw</p>
</div>
</body>
</html>