-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
22 lines (20 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<title>Minecraft</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href='https://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<link rel="stylesheet" href="style.css"></head>
<body>
<div class="hello">
<div class="logoHolder"><img src="https://itc.yananas.com/git/minecraft/images/MinecraftLogo.png" alt=""></div>
<div class="start"><button class="action-button shadow animate blue welcome">Start Game</button></div>
<div class="difficulty">
<button value='600' class="action-button shadow animate yellow small">Small</button>
<button value='1000' class="action-button shadow animate green medium selected">Medium</button>
<button value='3000' class="action-button shadow animate red big">Big</button></div>
</div>
<script src="minecraft.js"></script>
</body>