-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (49 loc) · 1.76 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Planning Poker</title>
<meta name="description" content="Agile Poker For Face-To-Face Planning">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
</head>
<body>
<div class="container">
<ul class="nav nav-pills">
<li class="active"><a href="#unk" data-toggle="tab">?</a></li>
<li><a href="#1" data-toggle="tab">1</a></li>
<li><a href="#3" data-toggle="tab">3</a></li>
<li><a href="#5" data-toggle="tab">5</a></li>
<li><a href="#8" data-toggle="tab">8</a></li>
<li><a href="#13" data-toggle="tab">13</a></li>
</ul>
<section class="tab-content">
<article class="tab-pane active" id="unk">
<h3>?</h3>
</article>
<article class="tab-pane" id="1">
<h3>1</h3>
</article>
<article class="tab-pane" id="3">
<h3>3</h3>
</article>
<article class="tab-pane" id="5">
<h3>5</h3>
</article>
<article class="tab-pane" id="8">
<h3>8</h3>
</article>
<article class="tab-pane" id="13">
<h3>13</h3>
</article>
</section>
</div>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>