-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (44 loc) · 1.75 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
42
43
44
45
46
47
48
49
50
51
52
53
<!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">
<meta name="description"
content="Tetris Javascript | An ode to gaming nostalgia, falling tetriminos and that catchy theme tune.">
<meta name="keywords" content="tetris, javascript, tetriminos, game, gaming, nostalgia">
<link rel="stylesheet" href="style.css">
<title>Welcome to Tetris JS</title>
</head>
<body class="main-bg">
<!-- main title welcoming the user to the site -->
<section class="main">
<div class="title">
<h2>welcome to</h2>
<h1>tetris js</h1>
</div>
</section>
<!-- with no nav bar on the landing page, the buttons are the users main source of navigation -->
<section class="navButtons">
<h2 hidden>secondary navigation buttons</h2>
<div>
<div>
<a href="tetris.html" class="buttons btn">Play Tetris</a>
</div>
<div>
<a href="instructions.html" class="buttons btn">Instructions</a>
</div>
</div>
</section>
<!--footer section for social links, copyright information -->
<footer>
<a class="arrow-top" href="#top" aria-label="return to the top of the page">
<i class="fas fa-arrow-alt-circle-up"></i>
</a>
<p>Copyright ishitaSinghal<span>©</span> 2022 | Privacy Policy | Terms & Conditions</p>
</footer>
<!-- scripts for js and fontawesome -->
<script src="main.js"></script>
<script src="https://kit.fontawesome.com/0fb38816a1.js" crossorigin="anonymous"></script>
</body>
</html>