-
Notifications
You must be signed in to change notification settings - Fork 12
/
bootcamp.html
42 lines (39 loc) · 1.45 KB
/
bootcamp.html
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css">
<title>Navigation Menu</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="./tailwind.config.js"></script>
<style type="text/tailwindcss">
@layer utilities {
.content-auto {
content-visibility: auto;
}
}
</style>
</head>
<body>
<div class="lg:content-auto m-20 px-10">
<h1 class="text-3xl font-bold text-heading">
Participants
</h1>
<nav>
<ul class="underline text-link my-10">
<li><a href="./participants/chauchausoup/chauchausoup.html">chauchausoup</a></li>
<li><a href="./participants/signature-pad/signature-pad.html">Signature Pad</a></li>
<li><a href="./participants/file-system-api-feature/index.html">File System Feature</a></li>
<li><a href="./participants/manjilkoirala/clipboardApp/index.html">manjilkoirala</a></li>
<li><a href="./participants/rashilakhadka/rashilakhadka.html">rashilakhadka</a></li>
<li><a href="./participants/ankman007/index.html">ankman007</a></li>
<li><a href="./participants/abiral/index.html">abiral</a></li>
<li><a href="./participants/pfieffer/index.html">pfieffer</a></li>
<li><a href="./participants/prasiddhi/index.html">prasiddhi</a></li>
<li><a href="./participants/fullstacksherpa/index.html">fullstacksherpa</a></li>
</ul>
</nav>
</div>
</body>
</html>