This repository was archived by the owner on Aug 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (70 loc) · 2.8 KB
/
index.html
File metadata and controls
70 lines (70 loc) · 2.8 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Artifact Helper Main</title>
<link href="css/goudytrajanfont.css" rel="stylesheet" type="text/css"/>
<link href="css/base.css" rel="stylesheet" type="text/css"/>
<link href="css/sidenav.css" rel="stylesheet" type="text/css"/>
<link href="css/squareimagelinks.css" rel="stylesheet" type="text/css"/>
<script src="js/fetching.js" defer></script>
<script src="js/sidenav.js" defer></script>
<script src="js/translate.js" defer></script>
</head>
<body>
<nav id="sidenav"></nav>
<video preload="preload" id="background_video" autoplay loop muted>
<source src="video/bgloop.webm" type="video/webm"/>
</video>
<section id="button-contain">
<!-- News Button -->
<section class="boxing square effect">
<a href="news.html">
<section class="img"><img src="img/mainbutton/news.jpg" alt="NewsImage"></section>
<section class="info">
<h3 id="main_news"></h3>
<p id="main_newsdesc"></p>
</section></a></section>
<!-- ChangeLogs Button -->
<section class="boxing square effect">
<a href="changelogs.html">
<section class="img"><img src="img/mainbutton/changelog.jpg" alt="ChangeLogsImage"></section>
<section class="info">
<h3 id="main_changelogs"></h3>
<p id="main_changelogsdesc"></p>
</section></a></section>
<!-- Decks and Cards Button -->
<section class="boxing square effect">
<a href="deckscards.html">
<section class="img"><img src="img/mainbutton/deckscards.jpg" alt="DecksandCardsImage"></section>
<section class="info">
<h3 id="main_deckscards"></h3>
<p id="main_deckscardsdesc"></p>
</section></a></section>
<!-- Statistics Button -->
<section class="boxing square effect">
<a href="statistics.html">
<section class="img"><img src="img/mainbutton/statistics.jpg" alt="StatisticsImage"></section>
<section class="info">
<h3 id="main_statistics"></h3>
<p id="main_statisticsdesc"></p>
</section></a></section>
<!-- Config Button -->
<section class="boxing square effect">
<a href="config.html">
<section class="img"><img src="img/mainbutton/config.jpg" alt="ConfigImage"></section>
<section class="info">
<h3 id="main_config"></h3>
<p id="main_configdesc"></p>
</section></a></section>
<!-- About Button -->
<section class="boxing square effect">
<a href="about.html">
<section class="img"><img src="img/mainbutton/about.jpg" alt="AboutImage"></section>
<section class="info">
<h3 id="main_about"></h3>
<p id="main_aboutdesc"></p>
</section></a></section>
</section>
</body>
</html>