-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html.old
43 lines (40 loc) · 2.04 KB
/
index.html.old
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
43
<!DOCTYPE html>
<html>
<head>
<title>Campbell's Portfolio</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/htmx.org@1.9.6" integrity="sha384-FhXw7b6AlE/jyjlZH5iHa/tTe9EpJ1Y55RjcgPbjeWMskSxZt1v9qkxLJWNJaGni" crossorigin="anonymous"></script>
</head>
<body class="bg-gray-700">
<nav class="bg-gray-800">
<div class="mx-auto max-w-7xl px-2 sm:px-6 lg:px-8">
<div class="relative flex h-16 items-center justify-between">
<div class="absolute inset-y-0 left-0 flex items-center">
<!--
Icon when menu is open.
Menu open: "block", Menu closed: "hidden"
-->
<svg class="hidden h-6 w-6" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
<div class="flex flex-1 sm:items-stretch sm:justify-start">
<div class="sm:ml-6">
<div class="flex space-x-4">
<!-- Current: "bg-gray-900 text-white", Default: "text-gray-300 hover:bg-gray-700 hover:text-white" -->
<a href="#" class="bg-gray-900 text-white rounded-md px-3 py-2 text-sm font-medium" aria-current="page">Home</a>
<a href="#" class="text-gray-300 hover:bg-gray-700 hover:text-white rounded-md px-3 py-2 text-sm font-medium">About Me</a>
</div>
</div>
</div>
</div>
</div>
</nav>
<div class="w-50 md:w-100 grid gap-4 flex flex-col px-2 py-5 md:px-20 md:py-10 lg:px-40 lg:py-20">
<div class="bg-gray-900 hover:bg-gray-800 text-gray-300 font-semibold hover:text-white py-2 px-4 rounded">First Project</div>
<div class="bg-gray-900 hover:bg-gray-800 text-gray-300 font-semibold hover:text-white py-2 px-4 rounded">Second Project</div>
<div class="bg-gray-900 hover:bg-gray-800 text-gray-300 font-semibold hover:text-white py-2 px-4 rounded">Third Project</div>
</div>
</body>
</html>