-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.html
52 lines (51 loc) · 2.25 KB
/
values.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="valueList.js"></script>
<title>Expansive if Unerring</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
</head>
<body>
<header>
<h2>What am I gonna see?</h1>
</header>
<div class="container" id="main-values">
<span>Currently, there are: </span>
<span><span id="num-size">#</span> values for size.</span>
<span><span id="num-truth">#</span> values for truthiness.</span>
<span>Together, that makes <span id="num-combos">#</span> possible combinations!</span>
</div>
<div class="container" id="value-lists">
<table>
<tr>
<th>Possible Size Values</th>
<th>Possible Truth Values</th>
</tr>
<tr>
<td>
<ul class="value-list" id="size-list"></ul>
</td>
<td>
<ul class="value-list" id="truth-list"></ul>
</td>
</tr>
</table>
</div>
<div class="container" id="img-holder">
<div class="bottom-nav">
<ul>
<li><a href="index.html"><i class="fa fa-thumbs-up"></i>Alright I get it, send me back.</a></li>
</ul>
</div>
<img src="bigiftrue.PNG" id="the-bet">
</div>
</body>
</html>