-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (27 loc) · 1.13 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<script src="https://unpkg.com/[email protected]"></script>
<title>Your Portfolio</title>
</head>
<body>
<nav class="bg-blue-500 p-4">
<div class="container mx-auto flex justify-between items-center">
<h1 class="text-white text-2xl">My Portfolio</h1>
<ul class="flex space-x-4">
<li><button hx-get="about.html" hx-swap="innerHTML" hx-target="#content" class="bg-blue-500 text-white p-2 mt-4">Load About Me</button></li>
<li><button hx-get="partials/test.html" hx-swap="innerHTML" hx-target="#content" class="bg-blue-500 text-white p-2 mt-4">Test</button></li>
</ul>
</div>
</nav>
<div>
<h2>Welcome to my portfolio website!</h2>
<div id="content">
<p>Place Holder</p>
</div>
</div>
</body>
</html>