From d23fdecdd1f02afc4181c08105446d1815e5f356 Mon Sep 17 00:00:00 2001 From: Yesn't <131057815+YesTheProxy@users.noreply.github.com> Date: Tue, 7 May 2024 18:31:15 -0400 Subject: [PATCH] Update index.html --- index.html | 37 +++++++++++++++++++++++++++++-------- 1 file changed, 29 insertions(+), 8 deletions(-) diff --git a/index.html b/index.html index 1e8bdf4..d7fed18 100644 --- a/index.html +++ b/index.html @@ -75,6 +75,23 @@ .content.active { display: block; } + + /* New CSS for the About Us section */ + .about-us { + margin-top: 60px; + } + + .about-us h2 { + font-size: 28px; + color: #333; + margin-bottom: 10px; + } + + .about-us p { + font-size: 16px; + color: #666; + margin-bottom: 20px; + } </style> <script> function showContent(tabId) { @@ -106,18 +123,22 @@ <h1>Website Under Construction</h1> </div> <div id="theshmungus1-content" class="content"> - <h2>Theshmungus1</h2> - <p>About Theshmungus1...</p> + <div class="about-us"> + <h2>Theshmungus1</h2> + <p>About Theshmungus1...</p> + </div> </div> <div id="djshelfmushroom-content" class="content"> - <h2>DJShelfmushroom</h2> - <p>About DJShelfmushroom...</p> + <div class="about-us"> + <h2>DJShelfmushroom</h2> + <p>About DJShelfmushroom...</p> + </div> </div> <div id="yesnt-content" class="content"> - <h2>Yesn't</h2> - <p>About Yesn't...</p> + <div class="about-us"> + <h2>Yesn't</h2> + <p>About Yesn't...</p> + </div> </div> -</body> -</html>