-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 1.03 KB
/
index.html
File metadata and controls
27 lines (24 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./assets/icons/vc.png" type="image/x-icon">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="styles/style.css">
<script type="module" src="./scripts/index.js" defer></script>
<title>Version Control Session Task</title>
</head>
<body>
<div id="root">
<header class="mb-6 flex flex-col items-center gap-4">
<h1 class="text-3xl text-center"><span class="text-[#F1502F] font-bold">Version</span> Control Task</h1>
<p class="text-center text-gray-500">
Please go to <code class="font-bold text-lg"> data/index.js</code> file <br />
Add a new record that contains information about you</p>
</header>
<div id="cards-container" class="grid gap-8 grid-cols-1 md:grid-cols-2 lg:grid-cols-3 justify-items-center">
</div>
</div>
</body>
</html>