-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharticles.html
More file actions
79 lines (75 loc) · 2.98 KB
/
articles.html
File metadata and controls
79 lines (75 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Articles</title>
<!-- Підключаємо скомпільовані CSS файли -->
<link rel="stylesheet" href="articles.less.css"> <!-- Підключення LESS -->
<link rel="stylesheet" href="articles.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>
</header>
<main>
<section class="articles">
<article class="main-article">
<h1>Discover New Travel Ideas</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<button>Register</button>
</article>
<div class="features">
<div class="feature">
<h2>Explore Destinations</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
<div class="feature">
<h2>Travel Tips</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
<div class="feature">
<h2>Affordable Packages</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<section class="steps">
<h2>How to Start Traveling</h2>
<div class="step">
<h3>1. Plan</h3>
<p>Research destinations, activities, and travel dates.</p>
</div>
<div class="step">
<h3>2. Book</h3>
<p>Reserve flights, accommodations, and tours in advance.</p>
</div>
<div class="step">
<h3>3. Pack</h3>
<p>Prepare your luggage and necessary travel documents.</p>
</div>
<div class="step">
<h3>4. Go</h3>
<p>Embark on your journey and explore the world!</p>
</div>
</section>
</section>
</main>
<footer>
<div class="footer-logo">LOGO</div>
<ul>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Service</a></li>
</ul>
</footer>
</body>
</html>