-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvote.html
94 lines (68 loc) · 3.69 KB
/
vote.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
<!DOCTYPE html>
<html>
<head> <!--HEAD START-->
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1" />
<link href="css/styles.css" rel="stylesheet" type="text/css" media="screen"/>
<link href="css/vote.css" rel="stylesheet" type="text/css" media="screen"/>
<link rel="icon" type="image/ico" href="images/favicon.ico">
<title>CRAFT412 - Vote</title>
</head> <!--HEAD END-->
<body> <!--BODY START-->
<header> <!--HEADER START-->
<a class="discord-box" href="https://discord.gg/tS47bd" title="Join the Discord server" target="_blank">
<img src="images/discord-icon.png" alt="discord-icon"/>
<p>DISCORD</p>
</a>
<a id="three-lines" href="#">☰</a>
<nav id="top-nav"> <!--NAV START-->
<a href="index.html">Home</a>
<a href="status.html">Status</a>
<a href="info.html">Info</a>
<a href="gamemodes.html">Gamemodes</a>
<a href="rules.html">Rules</a>
<a href="vote.html" class="active">Vote</a>
<a href="contact.html">Contact</a>
</nav> <!--NAV END-->
<a id="logo" title="Go back to the homepage" href="index.html"><img src="images/header-logo.png" alt="logo"/></a>
<p id="ip-box" title="Address to join CRAFT412">SERVER IP<br/>craft412.serveminecraft.net</p>
</header> <!--HEADER END-->
<div class="wrapper"> <!--WRAPPER START-->
<main> <!--MAIN CONTENT START-->
<section class="title-banner"> <!--PAGE TITLE START-->
<h3>VOTE</h3>
</section> <!--PAGE TITLE END-->
<section class="vote-container"> <!--VOTE CONTENT START-->
<p>If you enjoy playing on CRAFT412 consider voting for us by clicking on the following buttons:</p>
<a class="vote-button" title ="Vote for CRAFT412 at Planet Minecraft" href="http://www.planetminecraft.com/server/craft412-2689518/vote" target="_blank">
<img src="images/planetminecraft-button.png" alt="planetminecraft-vote">
</a>
<a class="vote-button" title ="Vote for CRAFT412 at MinecraftServers" href="http://minecraftservers.org/vote/474590" target="_blank">
<img src="images/minecraftservers-button.png" alt="minecraftservers-vote">
</a>
<a class="vote-button" title ="Vote for CRAFT412 at Minecraft Serverlist" href="http://minecraft-server-list.com/server/415372/vote/" target="_blank">
<img src="images/minecraftserverlist-button.png" alt="minecraftserverlist-vote">
</a>
<a class="vote-button" title ="Vote for CRAFT412 at TopG" href="https://topg.org/Minecraft/in-429519" target="_blank">
<img src="images/topg-button.png" alt="topg-vote">
</a>
</section> <!--VOTE CONTENT END-->
</main> <!--MAIN CONTENT END-->
<footer> <!--FOOTER START-->
<p>Created By GR412 2017</p>
<div class="icons"> <!--FOOTER ICONS START-->
<a title="GR412's Youtube channel" href="https://www.youtube.com/channel/UCDzWdpTILg5cimfNKbEjdHw" target="_blank">
<img src="images/youtube-icon.png" alt="youtube-icon"/>
</a>
<a title="GR412's Twitch channel" href="https://www.twitch.tv/sneakyshrike" target="_blank">
<img src="images/twitch-icon.png" alt="twitch-icon"/>
</a>
<a title="GR412's Github" href="https://github.com/SneakyShrike" target="_blank">
<img src="images/github-icon.png" alt="github-icon"/>
</a>
</div> <!--FOOTER ICONS END-->
</footer> <!--FOOTER END-->
</div> <!--WRAPPER END-->
<script src="js/nav-button.js"></script> <!-- JS file controls the drop down portion of the nav bar-->
</body> <!--BODY END-->
</html>