forked from palomadigital/squidCoders
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (44 loc) · 1.87 KB
/
index.html
File metadata and controls
45 lines (44 loc) · 1.87 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/index.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="./images/favicon.ico">
<title>Squid Coders</title>
</head>
<body>
<header class="mainHeader">
<div class="logo"><img src="./images/logo.png"></div>
</header>
<main>
<div class="instruction">
<p> A game based on the wheel of doom. <br>
Join the 25 Squiders. <br>
Who will be eliminated when the green light turns red and the doll turns. <br>
Cross your fingers so that luck is with you as long as the doll does not eliminate you with its laser.
</p>
</div>
<div class="inputContainer">
<div class="inputBox">
<input id="nameNewSquider"type="text" placeholder="Write your name here!" class="textInput"></input>
<button onclick="addSquider()">Add Squider</button>
</div>
</div>
<div>
<a href="game.html"><button> PLAY </button></a><br>
</div>
<div class="doll">
<img src="./images/dollFront.png" alt="Doll Front">
</div>
</main>
<footer class="footerInfo">
<p> © Copyrigth 2022 Squid Coders </p>
</footer>
<!--<script src="./js/index.js"></script>-->
</body>
</html>