A collection of games I worked on in high school.
1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <meta charset="UTF-8">
5 <title>GL0V Games</title>
6 <link href="https://fonts.googleapis.com/css?family=Dosis:600,200" rel="stylesheet" type="text/css">
7 <style>
8 body {
9 background: #0f0f0f;
10 }
11
12 h1 {
13 font-family: "Dosis", sans-serif;
14 font-weight: 200;
15 color: #00BD44;
16 margin-left: 20px;
17 margin-bottom: 0;
18 margin-top: 20px;
19 font-size: 4em;
20 }
21
22 a {
23 text-decoration: none;
24 color: #f0f0f0;
25 font-family: "Dosis", monospace;
26 font-weight: 400;
27 }
28
29 .game {
30 margin: 20px;
31 position: relative;
32 display: inline-block;
33 width: 200px;
34 height: 200px;
35 border: 1px solid #00BD44;
36 text-align: center;
37 line-height: 200px;
38 }
39
40 .game:hover {
41 animation: hover 0.3s ease-in forwards;
42 }
43
44 @keyframes hover {
45 100% {
46 background: #00BD44;
47 color: #0f0f0f;
48 }
49 }
50 </style>
51 </head>
52 <body>
53 <h1>GL0V GAMES.</h1>
54 <a href="/stealthy-snake" class="game">Stealthy Snake</a>
55 <a href="/s6" class="game">S6</a>
56 <a href="/champions-of-breakfast" class="game">Champions of Breakfast</a>
57 <a href="/knife-fight" class="game">Knife Fight</a>
58 <a href="/wildcard" class="game">Wildcard</a>
59 </body>
60</html>