From a401343b95dcc47b1d0b07f2f36c5d09ebd85ab5 Mon Sep 17 00:00:00 2001 From: Rayyan Hodges Date: Wed, 2 Nov 2022 10:08:09 +1100 Subject: [PATCH] Update index.html --- index.html | 41 ++++++++++++++++++++++++++++++++++------- 1 file changed, 34 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index 7f9fbaa..56bef87 100644 --- a/index.html +++ b/index.html @@ -13,13 +13,40 @@ width="300" height="300"> -
- Home - Contact - About - Payments - Products -
+ul { + list-style-type: none; + margin: 0; + padding: 0; + overflow: hidden; + background-color: #333; +} + +li { + float: left; +} + +li a { + display: block; + color: white; + text-align: center; + padding: 14px 16px; + text-decoration: none; +} + + +li a:hover { + background-color: #111; +} + +.active { + background-color: #04AA6D; +} + +