32 lines
709 B
HTML
32 lines
709 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>购物车</title>
|
||
|
<link rel="stylesheet" href="./css/layui.css">
|
||
|
<link rel="stylesheet" href="./css/shopcar.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<!-- 背景 -->
|
||
|
<div class="head"></div>
|
||
|
<!-- 我的购物车 -->
|
||
|
<div class="myshop">
|
||
|
<div class="logo">
|
||
|
<img src="./images/logo.png" alt="">
|
||
|
</div>
|
||
|
<div class="about">
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</header>
|
||
|
|
||
|
<section>
|
||
|
<div class="whole">
|
||
|
<h3>全部商品</h3>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
</body>
|
||
|
</html>
|