-
Notifications
You must be signed in to change notification settings - Fork 0
/
post-game.html
55 lines (55 loc) · 2.98 KB
/
post-game.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/styles.css" media="screen" title="no title">
<script src="js/jquery-3.1.1.js"></script>
<script src="js/postScripts.js"></script>
<title></title>
</head>
<body>
<nav>
<p>
<a id="logo" href="index.html">
TheGallery
</a>
</p>
<ul>
<!-- <li><a href="index.html" id="logo">TheGallery</a></li> -->
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Search</a></li>
<li><a href="#">Your Gallery</a></li>
<li><a href="game-menu.html">Game</a></li>
</ul>
</nav>
<h1 class="pageName">Post-Impressionism</h1>
<div id="picbox">
<span id="boxbuttons">
<span class="button">
<span id="counter">0</span>
Clicks
</span>
<span class="button">
<a onclick="ResetGame();">Reset</a>
</span>
</span>
<div class="results">
<div id="resultsList">
<div class="gameCard"><img src="img/post/cezanne.jpg" alt="Cezanne"/><h4>Still Life with Fruit Basket - Paul Cezanne</h4></div>
<div class="gameCard"><a href="https://en.wikipedia.org/wiki/Les_Demoiselles_d%27Avignon"><img src="img/post/cubist.jpg" alt="Les Demoiselles d'Avignon" /></a><h4>Les Demoiselles d'Avignon - Pablo Picasso</h4></div>
<div class="gameCard"><a href="https://en.wikipedia.org/wiki/Girl_before_a_Mirror"><img src="img/post/picasso.jpg" alt="Girl Before A Mirror" /></a><h4>Girl Before a Mirror - Pablo Picasso</h4></div>
<div class="gameCard"><a href="https://en.wikipedia.org/wiki/Nude_Descending_a_Staircase,_No._2"><img src="img/post/duchamp.jpg" alt="Nude Descending a Staircase" /></a><h4>Nude Descending a Staircase, No. 2 - Marcel Duchamp</h4></div>
<div class="gameCard"><a href="https://en.wikipedia.org/wiki/Arearea"><img src="img/post/gauguin.jpg" alt="Arearea Aka Joyousness" /></a><h4>Arearea Aka Joyousness - Paul Gauguin</h4></div>
<div class="gameCard"><a href="https://en.wikipedia.org/wiki/Tahitian_Women_on_the_Beach"><img src="img/post/women.jpg" alt="Parau Api Aka What News" /></a><h4>Parau Api - Paul Gauguin</h4></div>
<div class="gameCard"><a href="https://en.wikipedia.org/wiki/Bathers_at_Asni%C3%A8res"><img src="img/post/river.jpg" alt="Bathers at Asnières" /></a><h4>Bathers at Asnières - Georges-Pierre Seurat</h4></div>
<div class="gameCard"><a href="https://en.wikipedia.org/wiki/Sunflowers_(Van_Gogh_series)"><img src="img/post/sunflowers.jpg" alt="Sunflowers" /></a><h4>Sunflowers - Vincent van Gogh</h4></div>
<div class="gameCard"><a href="https://en.wikipedia.org/wiki/The_Starry_Night"><img src="img/post/starry.jpg" alt="Starry Night" /></a><h4>Starry Night - Vincent van Gogh</h4></div>
</div>
</div>
</div>
<div id="boxcard"></div>
</div>
</div>
</body>
</html>