-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatalog.html
More file actions
82 lines (79 loc) · 2.77 KB
/
Copy pathcatalog.html
File metadata and controls
82 lines (79 loc) · 2.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Catalog</title>
<!-- Підключаємо скомпільовані CSS файли -->
<link rel="stylesheet" href="catalog.less.css"> <!-- Підключення LESS -->
<link rel="stylesheet" href="catalog.styl.css"> <!-- Підключення Stylus -->
</head>
<body>
<header>
<div class="logo">LOGO</div>
<nav class="navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="info.html">Info</a></li>
<li><a href="articles.html">Articles</a></li>
<li><a href="catalog.html">Catalog</a></li>
<li><a href="travel.html">Travel</a></li>
</ul>
</nav>
<div class="search">
<input type="text" placeholder="Search">
</div>
</header>
<main>
<aside class="sidebar">
<h3>Catalog</h3>
<ul>
<li><a href="#category1">Category 1</a></li>
<li><a href="#category2">Category 2</a></li>
<li><a href="#category3">Category 3</a></li>
</ul>
</aside>
<section class="catalog">
<div class="catalog-item">
<img src="3.jpg" alt="Item Image">
<h3>Item Name</h3>
<p>Price: $100</p>
<button>Buy</button>
</div>
<div class="catalog-item">
<img src="3.jpg" alt="Item Image">
<h3>Item Name</h3>
<p>Price: $200</p>
<button>Buy</button>
</div>
<div class="catalog-item">
<img src="3.jpg" alt="Item Image">
<h3>Item Name</h3>
<p>Price: $150</p>
<button>Buy</button>
</div>
<div class="catalog-item">
<img src="3.jpg" alt="Item Image">
<h3>Item Name</h3>
<p>Price: $180</p>
<button>Buy</button>
</div>
<div class="catalog-item">
<img src="3.jpg" alt="Item Image">
<h3>Item Name</h3>
<p>Price: $250</p>
<button>Buy</button>
</div>
<div class="catalog-item">
<img src="3.jpg" alt="Item Image">
<h3>Item Name</h3>
<p>Price: $300</p>
<button>Buy</button>
</div>
</section>
</main>
<footer>
<p>© 2024 Travel Website. All rights reserved.</p>
</footer>
</body>
</html>