main_web/tictac/index.html
2021-02-22 11:23:51 -05:00

65 lines
1.7 KiB
HTML

<html>
<head>
<meta name="theme-color" content="#999999">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes">
<link rel="icon" type="image/ico" href="tictac.ico">
<link rel="stylesheet" type="text/css" href="/menu/menu.css">
<link rel="stylesheet" type="text/css" href="tictac.css">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title> Tic Tac Toe Touch</title>
</head>
<body>
<div id="nav_menu">
</div>
<script src="/menu/menu.js"></script>
<br /><br /><br />
<main>
</br>
</br>
</br>
<div id="button">
<button onclick="game();">Multiplayer</button> <button onclick="game1();">Easy</button> <button onclick="game2();">Medium</button> <button onclick="game3();">Hard</button> <button onclick="game4();">Expert</button>
</br>
</div>
</br>
</br>
<div id="tic">
</div>
<div id="score">
</div>
<div id="level">
<h1> CHOOSE A LEVEL</h1>
</div>
<pre>
"Our home-amusements by the warm peat-fire
At evening, when with pencil, and smooth slate
In square divisions parcelled out and all
With crosses and with cyphers scribbled o'er,
We schemed and puzzled, head opposed to head
In strife too humble to be named in verse:
Or round the naked table, snow-white deal,
Cherry or maple, sate in close array,
And to the combat,
Loo or Whist, led on
A thick-ribbed army; not, as in the world,
Neglected and ungratefully thrown by
Even for the very service they had wrought,
But husbanded through many a long campaign."
- Wordsworth
</pre>
</main>
<script src="tictac.js">
</script>
</body>
</html>