-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (24 loc) · 941 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<title>Randomizer</title>
</head>
<body>
<div id="app">
<div id="intro">
<h1>Tap Here <small>Created by <a href="http://be.net/falmesino" target="_blank">Falmesino Abdul Hamid</a></small></h1>
</div><!--/ .intro -->
<div class="output" id="output">
<div class="output__item">
<h1>…</h1>
</div><!--/ .output__item -->
</div><!--/ .output -->
</div><!--/ .app -->
<script src="./js/jquery-1.11.1.min.js"></script>
<script src="./js/app.js"></script>
</body>
</html>