added nav bar buttons with place holder link

This commit is contained in:
Michael 2025-02-27 19:30:00 -05:00
parent 4a63e141a7
commit e623a9cbac

View file

@ -10,11 +10,50 @@
<body> <body>
<!--Header Bar --> <!--Header Bar -->
<section> <section
id="nav_bar"
class="nav_bar"
>
<div
id="nav_left_holder"
class="nav_left_holder"
>
<button
id="button1"
class="banner_button"
hx-get="PATH TO MORE INFO"
hx-target="#core_container"
hx-swap="innerHTML"
>
<p>Button 1</p>
</button>
<button
id="button2"
class="banner_button"
hx-get="PATH TO MORE INFO"
hx-target="#core_container"
hx-swap="innerHTML"
>
<p>Button 2</p>
</button>
<button
id="button3"
class="banner_button"
hx-get="PATH TO MORE INFO"
hx-target="#core_container"
hx-swap="innerHTML"
>
<p>Button 3</p>
</button>
</div>
</section> </section>
<!--Body Area --> <!--Body Area -->
<section> <section
</section> id=#core_container
></section>
</body> </body>