From 5b11a54af2f4afddc0744aabfeaf35282d08d076 Mon Sep 17 00:00:00 2001 From: Tanushree084 Date: Tue, 15 Oct 2024 19:32:11 +0530 Subject: [PATCH] Updated the nav bar. --- index.html | 44 ++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 40 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 20b869c5..1e960f95 100644 --- a/index.html +++ b/index.html @@ -272,11 +272,11 @@

BuddyTrail

×
  • Home
  • -
  • Team
  • -
  • Exclusive Deals
  • -
  • Benefits
  • About
  • +
  • Benefits
  • Travel Itineraries
  • +
  • Exclusive Deals
  • +
  • Benefits
  • Contact
  • Reviews
  • @@ -573,10 +573,46 @@

    Wildlife Safari in Kenya

    right: 10px; } - /* Optional hover effects */ .carousel-button:hover { background-color: rgb(6, 6, 6); } + body { + font-family: Arial, sans-serif; +} + +header { + display: flex; + align-items: center; + padding: 20px; +} + +.logo { + margin-right: 30px; +} + + #nav-list { + list-style-type: none; + padding: 0; + margin: 0; + display: flex; + gap: 20px; + } + +#nav-list li { + display: inline; +} + +.navhover { + text-decoration: none; + padding: 10px 15px; + color: black; +} + +.navhover:hover { + background-color:brown; + border-radius: 5px; +} +