-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (70 loc) · 3.61 KB
/
index.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
<!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" />
<meta name="description" content="Cabin Trips - Enjoy Life, A blog about our daily-life trips and experiences" />
<script src="https://kit.fontawesome.com/c42e915e6a.js" crossorigin="anonymous"></script>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png" />
<link rel="manifest" href="./site.webmanifest" />
<link rel="mask-icon" href="./safari-pinned-tab.svg" color="#000000" />
<meta name="msapplication-TileColor" content="#f2d06b" />
<meta name="theme-color" content="#f2d06b" />
<!-- Hotjar Tracking Code for https://reverent-morse-b2f618.netlify.app/ -->
<script>
(function (h, o, t, j, a, r) {
h.hj =
h.hj ||
function () {
(h.hj.q = h.hj.q || []).push(arguments);
};
h._hjSettings = { hjid: 2829688, hjsv: 6 };
a = o.getElementsByTagName("head")[0];
r = o.createElement("script");
r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
})(window, document, "https://static.hotjar.com/c/hotjar-", ".js?sv=");
</script>
<link rel="stylesheet" href="styles/styles.css" />
<link rel="stylesheet" href="styles/index.css" />
<link rel="stylesheet" href="styles/media.css" />
<title>Home</title>
</head>
<body>
<header></header>
<main class="index_main">
<div class="main_topcontainer">
<h1>One day in paradise</h1>
<p>Welcome to our cabin-blog where we share some of our fun moments, trips and other experiences from our life. We hope you enjoy the blog and we appreciate if you leave a comment on our posts.</p>
</div>
<h2>Latest posts</h2>
<div class="carousel_container">
<div class="nav left" title="Previous posts" aria-label="Previous posts">
<p class="leftbutton cta"><i class="fa-solid fa-angles-left" alt="left arrow"></i></p>
</div>
<div class="latestposts" data-page="1"></div>
<div class="nav right" title="Next posts" aria-label="Next posts">
<p class="rightbutton cta"><i class="fa-solid fa-angles-right" alt="right arrow"></i></p>
</div>
<div class="mobile_nav">
<div class="nav left" title="Previous posts" aria-label="Previous posts">
<p class="leftbutton cta"><i class="fa-solid fa-angles-left" alt="left arrow"></i></p>
</div>
<div>
<p class="nav_infotext">Load more posts by using the arrow</p>
</div>
<div class="nav right" title="Next posts" aria-label="Next posts">
<p class="rightbutton cta"><i class="fa-solid fa-angles-right" alt="right arrow"></i></p>
</div>
</div>
</div>
</main>
<footer></footer>
<script src="js/common.js"></script>
<script src="js/index.js"></script>
</body>
</html>