-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgames.html
65 lines (53 loc) · 2.82 KB
/
games.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
<!DOCTYPE html>
<head>
<title>Yolwoocle · Games</title>
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@800&display=swap" rel="stylesheet">
<!-- <link href="https://fonts.googleapis.com/css2?family=Nunito:wght@800&display=swap" rel="stylesheet"> -->
<link rel="stylesheet" href="./css/index.css">
<link rel="stylesheet" href="./css/games.css">
<link rel="stylesheet" href="./css/card.css">
<link rel="icon" type="image/png" href="img/icon.png">
</head>
<body>
<div class="artContent">
<a href="index.html" class="h1link"><h1 class="title">Yolwoocle</h1></a>
<h2 class="subtitle">Games</h2>
<!-- This should be abstracted, there's 2 repetitions between art.html & games.html -->
<div class="cardGrid" id="cardGridId">
<!-- To be filled by the JS script -->
</div>
</div>
<div class="cardViewerContainer" id="cardViewerId">
<div class="cardViewerInterface" id="cardViewerInterfaceId">
<div class="cardViewerButton left center" id="cardViewerButtonLeftId" onclick="previousImage()">
<img src="img/icons/left.svg" id="buttonLeftImgId">
</div>
<div class="cardViewer paper">
<div class="quitButton cardViewerButton" onclick="closeImageViewer()">
<img src="img/icons/quit.svg">
</div>
<!-- <img src="./img/art/DoodleArtVertical.png"> -->
<img id="imageViewerImageId" src="./img/art/dino_sleeping17.gif">
<iframe id="imageViewerTrailerId"
width="560" height="315" src="https://www.youtube.com/embed/XF79HG9XOaA"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
<!-- <img src="./img/art/pigeons_NOT_WATERMARKED_23-oct_V3.png"> -->
<h2 id="imageViewerTitleId">Title</h2>
<h3 id="imageViewerTaglineId">Tagline</h3>
<p id="imageViewerDescriptionId">Description</p>
<p id="imageViewerLinksId"></p>
<p id="imageViewerCounterId" style="color: gray">?/??</p>
</div>
<div class="cardViewerButton right center" id="cardViewerButtonRightId" onclick="nextImage()">
<img src="img/icons/right.svg" id="buttonRightImgId">
</div>
</div>
</div>
<script src="./js/games.js"></script>
</body>