-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetail.html
103 lines (74 loc) · 3.13 KB
/
detail.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Book Covers detail</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/common.css">
<!-- fontのリンク -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- font-family: 'Zen Maru Gothic', sans-serif; -->
<link href="https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap" rel="stylesheet">
<!-- font-family: 'Noto Serif JP', serif; -->
<link href="https://fonts.googleapis.com/css2?family= Noto+Serif+JP:wght@200&display=swap" rel="stylesheet">
<!-- jQuery本体 CDN -->
<!-- <script src="https://code.jquery.com/jquery-2.2.4.js" integrity="sha256-iT6Q9iMJYuQiMWNd9lDyBUStIq/8PuOW33aOqmvFpqI=" crossorigin="anonymous"></script> -->
<!-- jQuery実行ファイル -->
<!-- <script type="text/javascript" src="js/common.js"></script> -->
</head>
<body class="index_fadeIn">
<header>
<a href="index.html">
<div class="detailheader">
<div class="logowrap2">
<p>Book</p>
<img src="images/book.jpg" alt="本の画像">
<p>Covers</p>
</div>
</div>
</a>
</header>
<main>
<div class="detailwrap">
<div class="setumeiwrap2">
<div>
<p>ブランド:Double Bee</p>
<p>商品名:猫のジト目ブックカバー</p>
<p>素材:革</p>
<p>製品国:日本</p>
<p>カラー:ベージュ</p>
<p>個数:1個</p>
<p>製品説明</p>
<p>猫耳のしおりがついたブックカバー</p>
<p>色はベージュで可愛いデザインになっているので</p>
<p>女性にも人気の商品です。</p>
</div>
</div>
<div class="gazouwrap">
<figure>
<img src="images/shopping01.webp" alt="商品詳細画像">
<img src="images/shopping02.webp" alt="商品詳細画像">
<img src="images/shopping03.webp" alt="商品詳細画像">
<img src="images/shopping04.webp" alt="商品詳細画像">
<img src="images/shopping05.webp" alt="商品詳細画像">
</figure>
</div>
<div class="kounyuuwrap">
<div>
<p>$8,000 JPY</p>
<p>ポイント:0pt</p>
<p>無料配送</p>
<p>配送場所:</p>
<p>〒450-0002 愛知県名古屋市中村区名駅4丁目27−1 総合校舎スパイラルタワーズ</p>
<input type="text" name="kosuu" placeholder="個数を入力する">
<a href="#">購入する</a>
<p class="hosii">欲しいものリストに追加</p>
</div>
</div>
</div>
</main>
<footer></footer>
</body>
</html>