forked from glacier-modding/g2-mods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (78 loc) · 2.49 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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#157878">
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
<link rel="stylesheet" href="/style.css">
<title>DescendMods</title>
</head>
<body>
<!--TOP LEFT HOME BUTTON/LOGO-->
<div class="logo">
<a href="/">DescendMods</a>
</div>
<!--NAVIGATION BAR-->
<div class="menu-outer">
<div class="dropdown">
<a href="/"><button class="dropbtn">Home</button></a>
</div>
<div class="dropdown">
<button class="dropbtn">Tools</button>
<div class="dropdown-content">
<a href="#">UABE</a>
<a href="#">AssetStudio</a>
<a href="#">Substance Painter</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Resources</button>
<div class="dropdown-content">
<a href="#">UABE Tutorial</a>
<a href="#">AssetStudio Demo</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Mods</button>
<div class="dropdown-content">
<a href="/Players/Players.html">Players</a>
<a href="#">Bikes</a>
<a href="#">Accessories</a>
</div>
</div>
</div>
<!--HEADER-->
<div class="page-header">
<h1 class="project-name">Descender Mods</h1>
<h2 class="project-tagline">To make your game look beautiful</h2>
<a href="https://github.com/descendmods/descend-mods" class="btn">Website Source available on GitHub</a>
</div>
<!--BRIEF CONTENT-->
<div class="main-content">
<h1 id="g2-modscom">Descenders Texture Showcase</h1>
<p>Below you can see the show case of what descenders texture modding is like!</p>
</div>
<!--GRID-->
<div class="game-container">
<div class="griditem-game">
<img src="images/Loop.png" alt="Loop">
</div>
<div class="griditem-game">
<img src="images/Skull.png" alt="Skull">
</div>
<div class="griditem-game">
<img src="images/Purple.png" alt="Purple">
</div>
<div class="griditem-game">
<img src="images/Redbull.png" alt="Redbull">
</div>
</div>
<!--FOOTER-->
<div class="footer">
<span class="footer-content">
<a href="https://github.com/descendmods/Descend-Mods">descend-mods.ga</a> is maintained by the <a href="https://github.com/descendmods">descendmods</a> organization.
</span>
</div>
</body>
</html>