Files
Schoolkantine/website/welcome.html

30 lines
653 B
HTML
Raw Normal View History

2025-02-13 11:38:45 +01:00
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-02-13 13:22:58 +01:00
<title>De welkompagina van de Mees</title>
2025-02-13 11:38:45 +01:00
<link rel="stylesheet" href="welcome.css">
<link rel="icon" href="media/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="welcome">
<div class="circle-wrapper">
2025-02-13 13:25:06 +01:00
<h1>Mees</h1>
<p>Naar menu</p>
2025-02-13 11:38:45 +01:00
</div>
2025-02-13 13:25:06 +01:00
<a href="menu.html">
<button>Menu</button>
2025-02-13 11:38:45 +01:00
</a>
</div>
<footer>
2025-02-13 12:10:31 +01:00
<center>
<p>&copy; 2025 Vista </p>
</center>
2025-02-13 11:38:45 +01:00
</footer>
</body>
</html>