hhl_project/index.html

24 lines
815 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>饭堂界面</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="canteen">
<img src="background.png" class="background" alt="Background">
<img src="desktop.png" class="table" alt="Table">
<img src="dinner_plate.png" class="plate" alt="Plate">
<img src="chef_hand.png" class="chef-hand" alt="Chef's Hand">
<img src="rice.png" class="rice" alt="Rice">
<img src="braised_pork.png" class="meat" alt="Meat">
</div>
<button onclick="serveFood()">Serve Food</button>
<script src="script.js"></script>
</body>
</html>