-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (105 loc) · 2.8 KB
/
index.html
File metadata and controls
109 lines (105 loc) · 2.8 KB
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
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="ja">
<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>DTFNTR - 目黒のアンティーク家具専門店</title>
<link rel="icon" href="img/favicon.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="container">
<a href="index.html">
<h1>
<img
src="img/logo.png"
alt="DTFNTR"
width="168"
height="48">
</h1>
</a>
<form action="">
<input type="text" name="" id="">
<button><i class="bi bi-search"></i></button>
</form>
<nav>
<ul>
<li>
<a href="#">
<i class="bi bi-person-circle"></i>
ログイン
</a>
</li>
<li>
<a href="#">
<i class="bi bi-cart4"></i>
カート
</a>
</li>
</ul>
</nav>
</div>
</header>
<section class="hero">
<img src="img/hero1.png" alt="素敵なソファ" class="current">
<img src="img/hero2.png" alt="素敵な黒いチェア">
<img src="img/hero3.png" alt="素敵な2つのチェア">
</section>
<section class="products">
<div class="container">
<h1>OUR ITEMS</h1>
<ul>
<li>
<a href="#">
<img src="img/pic1.png" alt="素敵な家具">
<h2>素敵な家具</h2>
<p>20,000円</p>
</a>
</li>
<li>
<a href="#">
<img src="img/pic2.png" alt="素敵な家具">
<h2>素敵な家具</h2>
<p>20,000円</p>
</a>
</li>
<li>
<a href="#">
<img src="img/pic3.png" alt="素敵な家具">
<h2>素敵な家具</h2>
<p>20,000円</p>
</a>
</li>
<li>
<a href="#">
<img src="img/pic4.png" alt="素敵な家具">
<h2>素敵な家具</h2>
<p>20,000円</p>
</a>
</li>
<li>
<a href="#">
<img src="img/pic5.png" alt="素敵な家具">
<h2>素敵な家具</h2>
<p>20,000円</p>
</a>
</li>
</ul>
<a href="#" class="more">もっと見る</a>
</div>
</section>
<footer>
<div class="container">
<small>(c) dotinstall.com</small>
<ul>
<li><a href="#"><i class="bi bi-twitter"></i></a></li>
<li><a href="#"><i class="bi bi-instagram"></i></a></li>
</ul>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>