forked from fikrcamp/HTML-Blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (58 loc) · 3.05 KB
/
index.html
File metadata and controls
65 lines (58 loc) · 3.05 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="eng">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie-edge" />
<title>Travel Blog</title>
<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=Dancing+Script&family=Italianno&family=Playball&display=swap"
rel="stylesheet">
</head>
<body>
<main>
<header>
<h1>My Travel Blog</h1>
</header>
<img src="./images/background.jpg" alt="beach">
<h2>Travel Posts</h2>
<div class="container">
<div class="d">
<img src="./images/one.jpeg" alt="travel image">
<h3>Traveling Improves Your Health</h3>
<p>From cutting down on stress, to lowering your chances of developing a heart disease, the health benefits of
traveling are huge. You may stay sitting on a chair all day long at the workplace: including some walking to
your trip is sure to make your body feel better. For some people, wandering abroad is even a cure for
depression and anxiety. Of course, it's not a foolproof cure, but it might help you feel better, both
physically and psychologically.</p>
<a href="https://www.claimcompass.eu/blog/benefits-of-travelling/">see more</a>
</div>
<div class="d">
<img src="./images/two.jpeg" alt="travel image">
<h3>Traveling Lets You Disconnect From Your Daily Life</h3>
<p>This is closely related to my previous point. We tend to get so caught up in our daily lives that sometimes,
by simply sticking around, we may do ourselves more harm than good. Your boss is taking over your life? Kids
are driving you mad? Your parents are trying to make you live the life they want? How long do you think you
can handle this pressure before you burst and everything falls apart?</p>
<a href="https://www.claimcompass.eu/blog/benefits-of-travelling/">see more</a>
</div>
<div class="d">
<img src="./images/three.jpeg" alt="travel image">
<h3>Traveling Makes You More Interesting</h3>
<p>I have no doubt that you're quite the conversationalist. That being said, including a few stories from abroad
is likely to grant you even more attention. Mentioning something that most people aren't familiar with or
bring a new perspective is always a good way to shine in a social situation. No need to write a whole travel
essay, just discuss what you've seen and where you've been: people who are accustomed to their daily life will
travel with your words.</p>
<a href="https://www.claimcompass.eu/blog/benefits-of-travelling/">see more</a>
</div>
</div>
<footer>
<p>The best travel blog in the world we offer amazing travel tips, photography, and video content.</p>
<h4>copyright© 2022</4>
</footer>
</main>
</body>
</html>