-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.html
More file actions
65 lines (62 loc) · 2.54 KB
/
info.html
File metadata and controls
65 lines (62 loc) · 2.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travel Info</title>
<!-- Підключення скомпільованого CSS файлу -->
<link rel="stylesheet" href="info.less.css"> <!-- Підключення LESS -->
<link rel="stylesheet" href="info.styl.css"> <!-- Підключення Stylus -->
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="catalog.html">Catalog</a></li>
<li><a href="articles.html">Articles</a></li>
<li><a href="info.html" class="active">Info</a></li>
<li><a href="travel.html">Travel</a></li>
</ul>
</nav>
</header>
<main>
<section class="content">
<article class="main-content">
<div class="article">
<img src="4.jpg" alt="Paris, France" class="article-image">
<div class="article-text">
<h2>Paris, France</h2>
<p>The city of lights and romance, known for its iconic Eiffel Tower and vibrant culture.</p>
</div>
</div>
<div class="article">
<img src="5.jpg" alt="Bali, Indonesia" class="article-image">
<div class="article-text">
<h2>Bali, Indonesia</h2>
<p>A tropical paradise with stunning beaches, lush greenery, and vibrant traditions.</p>
</div>
</div>
<div class="article">
<img src="6.jpg" alt="Tokyo, Japan" class="article-image">
<div class="article-text">
<h2>Tokyo, Japan</h2>
<p>A blend of traditional and modern culture, offering unique experiences and sights.</p>
</div>
</div>
</article>
<aside class="sidebar">
<h2>Quick Links</h2>
<ul>
<li><a href="#">Travel Deals</a></li>
<li><a href="#">Packing Guide</a></li>
<li><a href="#">Travel Insurance</a></li>
</ul>
</aside>
</section>
</main>
<footer>
<p>© 2024 Travel Blog. All rights reserved.</p>
</footer>
</body>
</html>