Skip to content

Commit

Permalink
Move css file into separate forlder
Browse files Browse the repository at this point in the history
  • Loading branch information
c8in4 committed May 30, 2024
1 parent 603fc2b commit ee06a4b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
File renamed without changes.
9 changes: 4 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/style.css">
<link rel="manifest" href="manifest.json">
<script src="script.js" defer></script>
<title>Snake</title>
</head>

<body>
<header>
<h1>Snake</h1>
<h1>Snake v2</h1>
</header>
<main>
<canvas id="canvas" width="350px" height="350px">
Expand All @@ -38,12 +39,10 @@ <h1>Snake</h1>
</main>

<footer>
<a href="https://c8in4.github.io/" target="_blank">
<a href="https://c8in4.github.io/" target="_self">
made by c8in4
</a>
</footer>

<script src="script.js"></script>
</body>

</html>

0 comments on commit ee06a4b

Please sign in to comment.