-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistings.html
58 lines (51 loc) · 2.35 KB
/
listings.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
<!DOCTYPE html>
<html>
<!---------------------------------------------ЗАГОЛОВОК------------------------------------------------>
<head>
<meta charset="utf-8" />
<meta name="description" content="Бронирование уютных домов для аренды в живописном регионе.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>У родника</title>
<link rel ="stylesheet" href ="css/styles_listings.css">
</head>
<!---------------------------------------------ЗАГОЛОВОК------------------------------------------------>
<!--------------------------------------------Навигация------------------------------------------->
<body>
<header>
<h1 onclick="goToHome()"> Бронирование домов </h1>
<nav>
<ul>
<li><a href = "about.html"> О нас</a></li>
<li><a href = "contact.html"> Контакты </a></li>
<li><a href = "services.html"> Услуги </a></li>
<li><a href = "price.html"> Цены </a></li>
<li><a href = "Placement_rules.html"> Правила размещения </a></li>
</ul>
</nav>
</header>
<script> // Код возрата на главную страницу (JavaScript)
function goToHome(){
window.location.href = "index.html";
}
</script>
<!--------------------------------------------Навигация------------------------------------------->
<!---------------------------Объекты----------------------------------------------->
<section id = "listings">
<h2>Объекты на аренду</h2>
<div class = "property">
<img src="img/House.jpg" alt="Дом у реки "width="400" height="400">
<div class="property-details">
<h3> Дом у реки</h3>
<p>Цена: от 2000 руб/сут</p>
<p>Описание: Уютный дом с видом на реку. С кухней и санузлом внутри.</p>
</div>
</div>
</section>
<!---------------------------Объекты----------------------------------------------->
<!---------------------------Подвал--------------------------------->
<footer>
<p>© 2024 ИСТОЧНИК. Все права защищены.</p>
</footer>
</body>
</html>
<!---------------------------Подвал--------------------------------->