Design a landing page for a services homepage of a small family that hosts their own infrastructure. The services hosted are Nextcloud, Gitea and Jitsi meet. Make a static HTML-page, use Tailwindcss for styling. The Site should have a responsive layout. Dominant colors should be an oak-leaf-green and majestic red for contrast. Accents should be in gold and possibly animated. The background should have a parchment feel to it.
Here is a sample landing page for the small family hosting their own infrastructure services:
see infrastructure_homepage.html
To add responsive layout, you can use the responsive utilities provided by Tailwindcss. For example, to make an element only visible on medium screens and above, you can use the md:block
utility class:
<div class="md:block">This element will be only visible on medium screens and above</div>
You can also use the w-full
and mx-auto
classes to make the content container take up the full width of the viewport and center it horizontally.
I hope this helps! Let me know if you have any questions.