-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 1.8 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<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">
<title>RanTic</title>
<!-- Google Fonts -->
<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=Climate+Crisis&family=Rubik+Iso&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="index.css">
</head>
<body class="bg-dark-blue">
<div class="container flow flex--home">
<h1 class="white">Ran<span class="dark-accent">T</span>ic</h1>
<!-- players name -->
<section class="flow" style="--flow-space: 40px">
<form>
<input class="white" type="text" id="firstPlayer">
<label for="firstPlayer" id="firstLabel">Player 1</label>
</form>
<form>
<input class="white" type="text" id="secondPlayer">
<label for="secondPlayer" id="secondLabel">Player 2</label>
</form>
</section>
<!-- Start button -->
<a class="start-btn bg-dark-accent white" id="start-button" href="game.html">Start</a>
<!-- <div class="rules">
<h3>Rules</h3>
<p><span>1. </span>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<p><span>2. </span>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sapiente veniam voluptatibus beatae voluptate officia ipsa.</p>
<p><span>3. </span>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Recusandae rerum officiis mollitia.</p>
</div> -->
</div>
<script src="index.js"></script>
</body>
</html>