-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
94 lines (87 loc) · 3.45 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<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" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css">
<link href="css/index.css" rel="stylesheet" />
<title>A to Z Experiences</title>
</head>
<body>
<header class="header">
<div class="logo-container">
<img class="logo" src="img/a-to-z.png">
<h1>A to Z Experiences!</h1></div>
<p>The perfect getaway <br>
for the parent at home......</p>
<nav class="navigation-bar">
<a href="index.html">Home</a>
<a href="AboutUs.html">About Us</a>
<a href="#">Contact</a>
<a href="https://a-to-z.netlify.com/">Sign up/login</a>
</nav>
</header>
<div class="container home">
<section class="intro">
<img src="img/mixed-family.jpg" class="Mixed-Family" alt="Mixed" />
<h2>What's an experience?</h2>
<p>
Experience is knowledge or skill in a particular job or activity, which you have gained because you have done that job or activity for a long time.
</p>
</section>
<!-- <article> -->
<div class="experiences">
<h3>Possible Experiences</h3>
<article>
<img class="Hot-air-balloon-image">
<div class="banana">
<img src="img/winery.jpg" class="wine" alt="winery"/>
<span class="strategy"><h2>winery adventure</h2>
<p>Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>
<button>Read More</button><hr></span>
</div>
<img class="yoga-image">
<div class="banana">
<img src="img/yoga.jpg" class="yogie" alt="Yoga" />
<span class="yoga"><h2>Yoga experience</h2>
<p>My first yoga experience. Lorem ipsum dolor, sit amet consectetur adipisicing elit. Eveniet, doloribus. Corporis aperiam maxime animi. Atque.</p>
<button>Read More</button><hr></span>
</div>
</article>
<article>
<img class="rock-climbing-image">
<div class="banana">
<img src="img/rock-climbing.jpg" class="climbing" alt="Rock Climbing"/>
<span class="rock-climbing"><h2>Rock climbing Experience</h2>
<p>My first climbing experience.</p>
<button>Read More</button><hr></span>
</div>
<img class="marathon-image">
<div class="banana">
<img src="img/marathon.jpg" class="twentySixMiles" alt="Marathon"/>
<span class="marathon"><h2>Marathon Experience</h2>
<p>it's finally in the bag! my marathon experience.</p>
<button>Read More</button><hr></span>
</div>
</article>
</div>
</div>
</div>
</section>
<footer>
<div class="bottom-nav">
<a href="#">Home</a>
<a href="about.html">About</a>
<a href="#">Contact</a>
<a href="#">Sign Up/login</a>
</div>
<h3>follow us on social Media</h3>
<div class="social-media">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<p>© 2020 Copyright: AtoZ Experiences.com</p>
</footer>
</body>
</html>