20 lines
480 B
HTML
20 lines
480 B
HTML
<!doctype html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<title>The HTML5 Herald</title>
|
|
<meta name="description" content="The HTML5 Herald">
|
|
<meta name="author" content="SitePoint">
|
|
<link rel="stylesheet" href="css/snake.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="snake"></div>
|
|
<div id="fruit"></div>
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
|
<script src="js/snake.js"></script>
|
|
</body>
|
|
</html> |