You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.7 KiB
50 lines
1.7 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>无人超市--购物车</title>
|
|
<link rel="stylesheet" href="../static/css/shoppingCart.css">
|
|
</head>
|
|
|
|
<main>
|
|
<h1 class="welcome">无人超市购物车</h1>
|
|
<!-- <canvas id="gifFace" width="300" height="300"> </canvas> -->
|
|
<!-- <div><img src="smartshop/img/face.gif" alt="face"></div> -->
|
|
</main>
|
|
<body>
|
|
<!-- 把下面的东西放入一个列表-->
|
|
<div class="product">
|
|
<img src="../static/img/product1.jpg" alt="Product Image" class="ProductImage">
|
|
<h3 class="ProductName">旺仔小馒头</h3>
|
|
<p class="ProductInfo">好吃爱吃</p>
|
|
<p class="price">¥4.50</p>
|
|
</div>
|
|
|
|
<div class="product">
|
|
<img src="../static/img/product2.jpg" alt="Product Image" class="ProductImage">
|
|
<h3 class="ProductName">乐事薯片</h3>
|
|
<p class="ProductInfo">好吃爱吃</p>
|
|
<p class="price">¥5.50</p>
|
|
</div>
|
|
<div class="product">
|
|
<img src="../static/img/product1.jpg" alt="Product Image" class="ProductImage">
|
|
<h3 class="ProductName">旺仔小馒头</h3>
|
|
<p class="ProductInfo">好吃爱吃</p>
|
|
<p class="price">¥4.50</p>
|
|
</div>
|
|
<div class="product">
|
|
<img src="../static/img/product1.jpg" alt="Product Image" class="ProductImage">
|
|
<h3 class="ProductName">旺仔小馒头</h3>
|
|
<p class="ProductInfo">好吃爱吃</p>
|
|
<p class="price">¥4.50</p>
|
|
</div>
|
|
<div class="container">
|
|
<div class="content">
|
|
<!-- 页面内容 -->
|
|
</div>
|
|
<div>
|
|
<button class="proceed">确认支付</button>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |