forked from itscodenation/flw1-rps-20-21-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (19 loc) · 669 Bytes
/
index.html
File metadata and controls
31 lines (19 loc) · 669 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width">
<!-- Link CSS here -->
<link type='text/css' rel='stylesheet' href='css/style.css' />
</head>
<body>
<h1> Rock, Paper, Scissors</h1>
<div>
<img class="showim" src="https://cdn.shopify.com/s/files/1/0743/4995/products/Rock_Paper_Scissors_Icon_-_Watermark.jpg?v=1511025284">
</div>
<!-- Link JQuery here -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Link script.js here -->
<script src='js/script.js'></script>
</body>
</html>