Code to make a website about food menu page
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Foodie's Menu</title>
<style>
body {font-family: Arial; background: #fff3e0;}
h1 {text-align: center; color: #e65100;}
.menu {width: 300px; margin: 20px auto; background: white; border-radius: 10px; padding: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.2);}
h2 {color: #ff9800;}
</style>
</head>
<body>
<h1>🍴 Foodie's Menu</h1>
<div class="menu">
<h2>Pizzas</h2>
<ul><li>Cheese Burst - $5</li><li>Veg Supreme - $6</li></ul>
<h2>Burgers</h2>
<ul><li>Classic Chicken - $4</li><li>Veg Crunch - $3.5</li></ul>
</div>
<footer style="background:#0d47a1; color:white; text-align:center; padding:25px; font-size:22px;">
© 2025 <a href="https://freecodesforwebsites.blogspot.com/" target="_blank" style="color:#bbdefb; text-decoration:none;">Free Codes for Websites</a> | All rights reserved.
</footer>
</body>
</html>
Comments
Post a Comment