-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdice.html
More file actions
79 lines (70 loc) · 3.4 KB
/
dice.html
File metadata and controls
79 lines (70 loc) · 3.4 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<script type="text/javascript" src="js/jquery-3.3.1.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<title>Dice | Random</title>
</head>
<body id="grey-body">
<div class="row">
<div class=" col-sm-2 col-md-3 col-lg-4">
</div>
<div class="col-xs-12 col-sm-8 col-md-6 col-lg-4">
<center>
<h2><a href="index.html">Random</a></h2>
<br>
<img src="img/orange/dice-5.png" alt="dice" class="dice">
<br><br><br><br>
<div class="themes">
<p id="color1" class="btns2">orange</p><p id="color2" class="btns2">red</p>
</div>
<br>
<div class="row info-links">
<a id="about-open"><i class="fas fa-info-circle"></i> About</a>
</div>
</div>
</center>
</div>
<div class=" col-sm-2 col-md-3 col-lg-4">
</div>
</div>
</center>
<div id="about">
<ul>
<li class="inline-this">
<h3 class="inline-this">About Random</h3>
</li>
<li id="close-window" class="inline-this closeWindow floatRight">
<!--ALT+0160--> <!--ALT+0160--><i class="fas fa-times"></i><!--ALT+0160--> <!--ALT+0160--><!-- Close window (x) -->
</li>
</ul>
<hr>
<p>Can't decide? Let a computer decide for you. Site by <a href="https://github.com/Thomrl">Thomrl</a></p>
<hr>
<h3>Credits</h3>
<ul>
<li><a target="_blank" href="https://getbootstrap.com/">Bootstrap</a></li>
<li><a target="_blank" href="https://jquery.com/">jQuery</a></li>
<li><a target="_blank" href="https://fontawesome.com/">FontAwesome</a></li>
<li><a target="_blank" href="https://github.com/">Github</a></li>
<li><a target="_blank" href="https://github.com/alexgibson/shake.js/">ShakeJS</a></li>
</ul>
<hr>
<div class="info-links">
<a href="https://github.com/Thomrl/Random">Source code</a>
<a href="https://thomrl.github.io/Random/changes.txt">Changelog</a>
<button id="close-window-button" type="button" class="btn btn-primary floatRight spaceDown10">Close</button>
</div>
</div>
<script src="js/shake.js"></script>
<script src="js/dice.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>