forked from gatolteam/gatol-html
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgame_preview.html
78 lines (64 loc) · 2.45 KB
/
game_preview.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Game-A-Thon of Learning</title>
<link rel="icon" type="image/png" href="images/gamecontroller-icon.png">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery.min.js"></script>
<script src="js/index.js"></script>
<script type="text/javascript">
// This is a jQuery convention to say that once all the files
// load, the function GameAThon.start() should run.
// This function is defined in the index.js
$(function() {
//GameAThon.start();
});
</script>
</head>
<body>
<div class="dashboard_header">
<img src="images/gamecontroller-icon.png">
<header id="dashboard_title">
Bubble Game
</header>
<div class="clear_float">
</div>
</div>
<div id="dashboard_container" class="dashboard container">
<div class="padding_top50 col">
<img class="img_med" src="images/patrick.png">
<div class="padding_top10 padding_bottom10 inner_title">
CSV file: example.csv
</div>
</div>
<div class="padding_top50 col2">
<div class="preview_game_desc">
<div class="inner_title">
Quick Game Desc:
</div>
<div class="inner_desc">
This description here is to describe the test related to the game. Here I am testing a longer string so that I can see how it shows up in the html. Testing is important.
</div>
</div>
<div class="preview_test_desc">
<div class="inner_title">
Test Desc:
</div>
<div class="inner_desc">
This description here is to describe the test related to the imported csv. Here I am testing a longer string so that I can see how it shows up in the html. Testing is important.
</div>
</div>
<div class="inner_title">
Link: thisgame.com/blah/hi/thisisreal
</div>
</div>
<div class="clear_float"></div>
<div class="footer">
<button id="statistics_btn" class="white_button med_btn">Statistics</button>
<button id="preview_play_btn" class="med_btn">Play</button>
</div>
</div>
</body>
</html>