Le regole per il foglio di stile sono:
div.menu a { font-weight: bold; background-color: rgb(51,102,255); color: white; border: 1pt solid blue; padding: 0.5em; text-decoration: none; }
Impostare il colore di sfondo delle voci del menu principale, al passaggio del mouse (:hover), a rgb(255,102,0)
div.menu a:hover { background-color: rgb(255,102,0); }
Visualizzare il risultato nel proprio browser.