-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (90 loc) · 3.17 KB
/
index.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!doctype html>
<head>
<title>Ebrius: Indie Video Game Studio</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="assets/global.css">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-74031885-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<header>
<input type="checkbox" id="togglebox" />
<label for="togglebox" id="navtoggler">Menu</label>
<img src="images/ebrius-indie-game-studo-logo.png" width="150" alt="Ebrius Indie Video Game Studio Logo">
<h1>Ebrius</h1>
<h2>Game Studio</h2>
<nav id="offcanvas">
<ul>
<li><a href="../index.html">Home</a></li>
<li>
<div class="dropdown">
<div class="drop-menu">Games</div>
<div class="dropdown-content">
<a href="games/guardian.html">Guardian</a>
<a href="games/altered.html">Altered</a>
<a href="games/dunlore.html">Dunlore</a>
<a href="games/divided.html">Divided</a>
<a href="games/charm.html">Charm</a>
<a href="games/chasm_climb.html">Chasm Climb</a>
</div>
</div>
</li>
<li><a href="about/index.html">About</a></li>
<li><a href="contact/index.html">Contact</a></li>
</ul>
</nav>
</header>
<div id=main-content">
<div class="slideshow"></div>
<div class="featured">
<h3>Featured Games</h3>
<div class="game-module">
<div class="align">
<a href="games/guardian.html">
<div class="overlay">
<p>Check it out!</p>
</div>
<img src="images/guardian-featured.jpg" alt="Featured Video Game Imagery: Guardian">
<p class="name">Guardian</p>
</a>
</div>
</div>
<div class="game-module">
<div class="align">
<a href="games/altered.html">
<div class="overlay">
<p>Check it out!</p>
</div>
<img src="images/featured-game-altered.jpg" alt="Featured Video Game Imagery: Altered">
<p class="name">Altered</p>
</a>
</div>
</div>
<div class="game-module">
<div class="align">
<a href="games/divided.html">
<div class="overlay">
<p>Check it out!</p>
</div>
<img src="images/featured-game-divided.jpg" alt="Featured Video Game Imagery: Divided">
<p class="name">Divided</p>
</a>
</div>
</div>
</div>
<footer>
<p>© Ryan Fleury</p>
<div class="social-media">
<a href="https://www.youtube.com/user/DrunkenWaffle"><img src="images/youtube.png" alt="Ebrius Youtube Page Link" width="80px"></a>
</div>
</footer>
</div>
</body>
</html>