-
Notifications
You must be signed in to change notification settings - Fork 5
/
Website.html
59 lines (53 loc) · 2.83 KB
/
Website.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
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Gaming Zone | gamingforall.com </title>
<link rel="stylesheet" href="css/styleweb.css" type="text/css" >
<!-- <link href="https://fonts.googleapis.com/css2?family=Bitter&display=swap" rel="stylesheet"> -->
<link href="https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@600&family=Bitter&display=swap" rel="stylesheet">
</head>
<body>
<nav id="navbar">
<div id="logo">
<img src="img/woc.png" alt="logo is here">
</div>
<ul>
<li class="item"><a href="">Home</a></li>
<li class="item"><a href="">Leaderboard</a></li>
<li class="item"><a href="">Contact Us</a></li>
<!-- <li class="item"><a></a></li> -->
</ul>
<div class="right">
<button class="btn"><a href="./Login page/index.html">Sign In</a></button>
</div>
</nav>
<section id="home">
<h1 class="hprimary">Welcome To GameZone</h1>
</section>
<section class="Games">
<h1 class="heading center">Games Available</h1>
<div id="game">
<div class="box">
<img src="img/tic tac toe.png" alt="">
<h2 class="hsecondary center">Tic Tac Toe</h2>
<p class="center">A paper-and-pencil game for two players, X and O, who take turns marking the spaces in a grid. The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row is the winner.</p>
<button class="btn center"><a href="./tic tac/select.html">Play Now</a></button>
</div>
<div class="box">
<img src="img/chess.png" alt="">
<h2 class="hsecondary center">Chess</h2>
<p class="center">Chess is a board Game for two players.Each player starts with sixteen pieces: eight pawns, two knights, two bishops, two rooks, one queen and one king.The goal of the game is for each player to try and checkmate the king of the opponent.</p>
<button class="btn center"><a href="./Chess Game/index.html">Play Now</a></button>
</div>
<div class="box">
<img src="img/snakes.png" alt="">
<h2 class="hsecondary center">Snakes</h2>
<p class="center">A classic snakes game where the player controls a snake which grows in length as it obtains(Eats) the scattered food on the player board while out-manuevering the obstacles ,mainly the edges and the snakes own body. </p>
<button class="btn center"><a href="./Snakes Game/index.html">Play Now</a></button>
</div>
</div>
</section>
</body>
</html>