<!-- oefening 1 --> <!DOCTYPE html> <html lang="nl"> <head> <title>Webwinkel</title> </head> <body> <h1>Menu</h1> <p>Maak een keuze:</p> </body> </html>
Download hier het bestand.
<!-- oefening 2 --> <!DOCTYPE html> <html lang="nl"> <head> <meta name="description" content="Koop hier al uw producten online!"> <meta name="keywords" content="Product 1, Product 2"> <meta name="author" content="PTH"> <title>Webwinkel</title> </head> <body> <h1 style="color:blue; font-weight: bold;">Menu</h1> <p>Maak een keuze:</p> </body> </html>
Download hier het bestand.
<!-- oefening 3 --> <!DOCTYPE html> <html lang="nl"> <head> <meta name="description" content="Koop hier al uw producten online!"> <meta name="keywords" content="Product 1, Product 2"> <meta name="author" content="PTH"> <title>Webwinkel</title> </head> <body> <h1 style="color:blue; font-weight: bold;">Menu</h1> <p>Maak een keuze:</p> <ul> <li> Home </li> <li> Klanten </li> <li> Bestellingen </li> </ul> </body> </html>
Download hier het bestand.