l105/PO Informatica P4/index1.php

<!DOCTYPE html> <html lang="nl"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Beginpagina</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f0f0f0; margin: 0; } .container { display: flex; gap: 20px; } .icon { width: 100px; height: 100px; display: flex; justify-content: center; align-items: center; background-color: #fff; border: 2px solid #ddd; border-radius: 10px; text-align: center; font-size: 18px; font-weight: bold; color: #333; transition: all .3s; text-decoration: none; /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); transition: transform 0.2s, box-shadow 0.2s; */ } .icon:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); } .imagebutton{ width:100%; height:100% } .icon1 { width: 358px; height: 100px; display: flex; justify-content: center; align-items: center; background-color: #fff; border: 2px solid #ddd; border-radius: 10px; text-align: center; font-size: 18px; font-weight: bold; color: #333; transition: all .3s; text-decoration: none; /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); transition: transform 0.2s, box-shadow 0.2s; */ } .icon1:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); } .icon2 { width: 100px; height: 100px; display: flex; justify-content: center; align-items: center; background-color: #fff; border: 2px solid #ddd; border-radius: 10px; text-align: center; font-size: 18px; font-weight: bold; color: #333; transition: all .3s; text-decoration: none; } .icon2:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); } </style> </head> <body> <div class="container"> <a href="Jumbo.php" class="icon1"> <img src= "images/Jumbo_Logo.svg.png" alt="Jumbo logo" class="imagebutton"> </a> <a href="Bakker.php" class="icon2"> <img src="images/file.png" alt="" class="imagebutton"> </a> <a href="Slager.php" class="icon"> <img src="images\slagerlogo.png" alt="slager logo" class="imagebutton"> </a> <a href="Muziek.php" class="icon"> <img src="images\muzieklogo.png" alt="muzieklogo" class="imagebutton"> </a> </div> <?php ?> </body> </html>

Resultaat

Made by Thijs Aarnoudse