-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (52 loc) · 2.3 KB
/
index.html
File metadata and controls
56 lines (52 loc) · 2.3 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
<!DOCTYPE html>
<html>
<head>
<title>Fishing Guide</title>
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<!-- HERO SECTION -->
<div id="hero">
<h1 id="hero-title">Ultimate Fishing Adventure</h1>
<h2 id="hero-description">Enjoy a day in the nature and with your closest friends.</h2>
</div>
<!-- ACTIVITIES SECTION -->
<div id="activities-set">
<h3 id="activities-set-title">Top activities</h3>
<div id="activities-box-general">
<div class="activities-box">
<img class="img-activities" src="images/image_zander2.jpg">
<h4>Fish</h4>
<p>Catch Chub, Perch, Pike or Walleye and experience the adrenaline and joy.</p>
</div>
<div class="activities-box">
<img class="img-activities" src="images/image_trip2.jpg">
<h4>Friends</h4>
<p>Get your friends and step up into an adventure.</p>
</div>
<div class="activities-box">
<img class="img-activities" src="images/image_trip4.jpg">
<h4>Nature</h4>
<p>Explore new places and enjoy a day in the beautiful river environment.</p>
</div>
</div>
</div>
<!-- GUIDE SECTION -->
<div id="guide">
<div id="guide-card">
<div id="img-guide-box">
<img id="img-guide" src="images/profile.jpg">
</div>
<div id="text-guide">
<h3>Your guide</h3>
<p id="p-guide">"With over a decade of experience, by fishing into various countries in Europe and participating at fishing competitions, I can show you all of its best tricks and hidden secrets of spinning all with a side of adventure and good stories."</p>
<h4>Andrei Strachinaru</h4>
</div>
</div>
</div>
</body>
<footer>
<p id="footer_text">All rights reserved! @Strack87!</p>
</footer>
</html>