Skip to content

Commit

Permalink
refactor: good html
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisAMJ committed Aug 30, 2024
1 parent 6f5a57b commit 502d594
Showing 1 changed file with 22 additions and 17 deletions.
39 changes: 22 additions & 17 deletions template.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
<!DOCTYPE HTML>

<head>
<title>Portal 2 Rules</title>
<link rel="stylesheet" href="style.css" />
</head>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portal 2 Rules</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/png" href="https://avatars.githubusercontent.com/u/83299896" />
</head>

<body>
<nav>
<div>
{{NAV_MENU}}
</div>
</nav>
<main>
<h1>Portal 2 Rules</h1>
{{CONTENT}}
</main>
</body>

<script src="scroll.js"></script>
<body>
<nav>
<div>
{{NAV_MENU}}
</div>
</nav>
<main>
<h1>Portal 2 Rules</h1>
{{CONTENT}}
</main>
</body>

<script src="scroll.js"></script>
</html>

0 comments on commit 502d594

Please sign in to comment.