-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<title>KalStat: Kalkulator Statistik</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel='stylesheet'
href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.2/css/bootstrap.min.css'/>
<link rel='stylesheet' href='./style.css'/>
</head>
<body id="o">
<nav class="navbar navbar-light navbar-fixed-top bg-faded">
<a class="navbar-brand" href="#">KalStat</a>
</nav>
<div class="container">
<div class="row">
<div class="col-sm-12">
<div id="content">
<h6 id="wait" class="text-muted">Tunggu bentar ...</h6>
</div>
<h6 class="text-muted">Finest, easy-to-use descriptive statistics calculator for scientists.</h6>
<h6 class="text-muted">by Eufrat Tsaqib</h6>
</div>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jstat/1.5.2/jstat.min.js'></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.0/react-dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.34/browser.min.js"></script>
<script type='text/babel' src='./script.js'></script>
</body>
</html>