forked from bongodev/vanilla-javascript-fall-2024
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (21 loc) · 703 Bytes
/
Copy pathindex.html
File metadata and controls
23 lines (21 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vanilla JavaScript projects</title>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
/>
</head>
<body class="bg-gray-100 h-screen">
<h1 class="text-4xl font-bold text-gray-800 text-center mt-4">
Vanilla JavaScript Projects
</h1>
<div id="projects-container" class="mx-auto w-[50%] px-8 py-8 gap-6"></div>
<script src="./script.js"></script>
</body>
</html>