
previous

page 6
next
the game itself
We can now start to build the Countries game so start a new file, index.html.
index.html
<html>
<head>
<title>Countries</title>
<link rel='stylesheet' href='styles.css'>
</head>
<body>
<div id='game'>
<div id='map'>
</div>
<div id='keyboard'>
</div>
<div id='squares'>
</div>
</div>
</body>
</html>
<head>
<title>Countries</title>
<link rel='stylesheet' href='styles.css'>
</head>
<body>
<div id='game'>
<div id='map'>
</div>
<div id='keyboard'>
</div>
<div id='squares'>
</div>
</div>
</body>
</html>
previous
next