-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1.11 KB
/
Copy pathindex.html
File metadata and controls
33 lines (30 loc) · 1.11 KB
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
<!doctype html>
<head>
<title>Game Maker Toolkit</title>
<link href="main.css" type="text/css" rel="stylesheet">
<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=Cormorant+Garamond:wght@300&family=Poppins:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<div class="banner">
<a href="index.html">Home Page</a>
<div class="tool-links">
<div class="dropdown">
<p>Scroller</p>
<div class="dropdown-content">
<a href="parallaxScroller.html">Parallax Scroller</a>
<a href="endlessScroller.html">Endless Scroller</a>
</div>
</div>
<a href="animator.html">Animator</a>
<a href="spritesheetAnimator.html">Sprite Sheet Animator</a>
<a href="gameSales.html">Video Game Sales</a>
</div>
</div>
<div class="main-container">
<h1>Game Maker Toolkit</h1>
<p class="description">Use a range of different tools made to assist in game development.</p>
</div>
<script src="main.js"></script>
</body>