-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
35 lines (35 loc) · 1.79 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 lang="en">
<head>
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="content-type" content="text/html"; charset="utf-8">
<title>Hello There</title>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="css/main.css" media="screen,projection">
</head>
<body class = "grey darken-4 orange-text text-accent-2 center">
<p>
Hello There,<br /> If click this button you do, only a prequel quote will you find.
</p>
<button id="getQuoteBtn" class="waves-effect orange darken-3 btn-large">DEWIT !!</button>
<div class="row quotecard">
<div class="col s12 m6 offset-m3">
<div class="card blue-grey darken-4">
<div class="card-content">
<p id="quotePlaceholder">They are coming through</p>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/main.js"></script>
<iframe id="frmFile" src="res/quotes.txt" onload="LoadFile();" style="display: none;"></iframe>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
</body>
</html>