-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews.html
136 lines (136 loc) · 5.83 KB
/
news.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap" rel="stylesheet">
<title>AdventureGit - News</title>
</head>
<body>
<button id="back-to-top" >↑</button>
<header class="search-header">
<section class="up">
<img src="images/logo.png" class="logo">
<nav>
<button id="menu-open">
<div class="menu-style"></div>
<div class="menu-style"></div>
<div class="menu-style"></div>
</button>
<div id ="free_menu"></div>
<ul id="menu">
<li class="menu-button">
<button id="menu-close">
<div class="menu-style"></div>
<div class="menu-style"></div>
<div class="menu-style"></div>
</button>
</li>
<li><a href="index.html">Home</a></li>
<li><a href="search.html">Destinations</a></li>
<li><a href="news.html">News</a></li>
<li><a href="about.html">About</a></li>
<li><button id="openLogin">Login</button>
<li><button id="openRegister">Register</button></li>
</ul>
</nav>
</section>
<div id="auth-form-container"></div>
<div id="login-form">
<button id="close-auth-log"></button>
<form>
<input type="text" name="login" placeholder="Your login" required>
<input type="password" name="password" placeholder="Your password" required>
<button name="log in">Log in</button>
<a id="change-to-reg" name="register">Don't have an account? Create one!</a>
</form>
</div>
<div id="register-form">
<button id="close-auth-reg"></button>
<form>
<input type="text" name="login" placeholder="Your login" required>
<input type="email" name="email" placeholder="Your email" required>
<input type="password" name="password" placeholder="Your password" required>
<input type="password" name="password" placeholder="Confirm password" required>
<button name="register">Register</button>
<a id="change-to-log" name="login">Already have an account? Sign in!</a>
</form>
</div>
</header>
<main class="news-main">
<section id="special-offers" class="special-offers">
<h1>Special Offers</h1>
<div class="single-images">
<div class="image-set">
<div class="new-article a1">
<h2 class="new-title">Family trip in <b style="color: orange;">winter</b> is cheaper in
<b style="color: #1abc83;">summer!</b></h2>
<div class="sale-wrap">SALE 50%</div>
</div>
<div class="new-article a2">
<h2 class="new-title">Article two</h2>
</div>
<div class="new-article a3">
<h2 class="new-title">Article three</h2>
</div>
<div class="new-article a4">
<h2 class="new-title">Article four</h2>
</div>
</div>
<nav>
<button id="prev-image"></button>
<button id="next-image"></button>
</nav>
</div>
</section>
</main>
<footer>
<section class="footer-up">
<div class="footer-left">
<img src="images/logo.png" class="logo">
<p>Plan and book your perfect trip with
expert advice, travel tips destination
information from us</p>
<p class="copyright">©2020 Thousand Sunny. All rights reserved</p>
</div>
<div class="right">
<ul>Destinations
<li><a href="search.html?location=africa">Africa</a></li>
<li><a href="search.html?location=antarctica">Antartica</a></li>
<li><a href="search.html?location=asia">Asia</a></li>
<li><a href="search.html?location=europe">Europe</a></li>
<li><a href="search.html?location=america">America</a></li>
</ul>
<ul>Shop
<li><a href="index.html#guides-download">Destinations Guides</a></li>
<li><a href="news.html#pictorial-and-gifts">Pictorial & Gifts</a></li>
<li><a href="news.html#special-offers">Special Offers</a></li>
<li><a href="about.html#delivery-times">Delivery Times</a></li>
<li><a href="about.html#faqs">FAQs</a></li>
</ul>
<ul>Interests
<li><a href="news.html#adventure">Adventure</a></li>
<li><a href="news.html#art-and-culture">Art And Culture</a></li>
<li><a href="news.html#wildlife-and-nature">Wildlife and Nature</a></li>
<li><a href="news.html#family-holidays">Family Holidays</a></li>
<li><a href="news.html#food-and-drinks">Food and Drinks</a></li>
</ul>
</div>
</section>
<div class="footer-separator"></div>
<section class="footer-down">
<img src="images/social-1.png">
<img src="images/social-2.png">
<img src="images/social-3.png">
<img src="images/social-4.png">
<img src="images/social-5.png">
</section>
</footer>
<script src="script.js"></script>
</body>
</html>