-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirm.html
36 lines (30 loc) · 997 Bytes
/
confirm.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>購入確認</title>
<link rel="stylesheet" href="css/html5reset-1.6.1.css">
<link rel="stylesheet" href="css/confirm.css">
<script src="js/comfirm.js"></script>
</head>
<body>
<div id="wrapper">
<div class="button008" class="back_btn">
<a href="index.html">買い物に戻る</a>
</div>
<div class="conteiner">
<h1>購入確認</h1>
<ul id="js_shopping_list" class="shopping_list">
</ul>
<div class="image"></div>
<div class="total">
<span class="yen_symbol">¥</span>
<span id="js_total"></span>
</div>
<button id="js_confirm" class="confirm_btn">購入確定</button>
</div>
</div>
</body>
</html>