-
Notifications
You must be signed in to change notification settings - Fork 0
/
tictactoe.html
39 lines (36 loc) · 1.39 KB
/
tictactoe.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Tic Tac Toe</title>
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="nav-wrapper">
<div class="left-side">
<div class="nav-link-wrapper">
<a href="index.html">Home</a>
</div>
<div class="nav-link-wrapper">
<a href="about.html">About</a>
</div>
<div class="nav-link-wrapper active-nav-link">
<a href="tictactoe.html">Tic Tac Toe</a>
</div>
</div>
<div class="right-side">
<div class="brand">
<div>KRISTIN LEE</div>
</div>
</div>
</div>
<div class="tic-tac-toe">
<h1>Let's play a game of Tic Tac Toe!</h1>
<p>Click on "Run" to begin the game.</p>
<iframe height="400px" width="100%" src="https://repl.it/@KristinLee2/TicTacToePractice?lite=true" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe>
</div>
</div>
</body>
</html>