-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 889 Bytes
/
index.html
File metadata and controls
33 lines (29 loc) · 889 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type=-"text/css" href="style.css">
<style>
body {
background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSZC3MEL82Bsw5btpuMwcfDnsnb9S-lBpo6yBhxKMZUZuDNwAHz8w');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
}
</style>
<title>Document</title>
</head>
<body>
<div class="header">
<h1>Rock Paper Fireball</h1>
</div>
<div class="game clearfix">
<h2>What do you choose?</h2>
<div class="rock"><h3>ROCK!</h3></div>
<div class="paper"><h3>PAPER!</h3></div>
<div class="fireball"><h3>FIYRBAlS!</h3></div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="app.js" type="text/javascript"></script>
</body>
</html>