Skip to content

Commit 4415385

Browse files
committed
Confirming tailwindcss library and showing flexbox
1 parent 71c8826 commit 4415385

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

frontend/index.php

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
<?php
2+
?>
3+
14
<!-- navbar -->
25
<h1>DB Test result:</h1>
36
<p><?php> echo $result; </?></p>
7+
<header>
8+
Displayed from frontend/index.php
9+
10+
<!--
11+
Demonstrating flex box using TailwindCSS that is referenced through a CDN inside root/public_html/head.php!!!
12+
-->
13+
14+
<!-- Parent Container -->
15+
<div>
16+
17+
<!-- Row One Container -->
18+
<div class="flex justify-center p-6 space-x-3 bg-white">
19+
<!-- Row One Item One -->
20+
<div class="w-24 h-24 bg-gray-100 ">
21+
item
22+
</div>
23+
<!-- Row One Item Two -->
24+
<div class="w-24 h-24 bg-gray-100 ">
25+
item
26+
</div>
27+
<!-- Row One Item Three -->
28+
<div class="w-24 h-24 bg-gray-100 ">
29+
item
30+
</div>
31+
</div>
32+
<!-- Row Container End -->
33+
34+
35+
36+
</div>
37+
<!-- Parent Container End -->
38+
39+
</header>

0 commit comments

Comments
 (0)