-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Custom Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<nav class="navbar">
<img class="logo" src="logo.png">
</nav>
<div class="center">
<h1>Welcome To Cascade</h1>
<h2>Explore The Child Within You</h2>
<div class="buttons">
<a href="tictactoe.html"><button>TIC TAC TOE</button></a>
<a href="typingtest.html"><button>TYPING TEST</button></a>
<a href="vocab.html"><button>VOCAB GAME</button></a>
<a href="suduko.html"><button>SUDOKU GAME</button></a>
<a href="triple-number-memory.html"><button>MEMORY GAME</button></a>
<a href="game-of-differences.html"><button>--SUBTRACTION--</button></a>
<a href="game-of-sums.html"><button>++ADDITION++</button></a>
<a href="game-of-triplets.html"><button>TRIPLET GAME</button></a>
<a href="set-sizes-animals.html"><button>WILD WONDERS</button></a>
<a href="set-sizes-shapes.html"><button>SHAPE SPOTTER</button></a>
</div>
</div>
</body>
</html>