-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAboutUs.html
99 lines (95 loc) · 3.58 KB
/
AboutUs.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
95
96
97
98
99
<!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">
<h1>A to Z Experiences!</h1>
<p>The perfect getaway <br>
for the parent at home......</p>
<nav>
<a href="index.html">Home</a>
<a href="AboutUs.html">About Us</a>
<a href="#">Contact</a>
<a href="#">Sign up</a>
</nav>
</header>
<div class="about-title">
<h2>What you should know about <br>
A to Z Experiences.</h2>
<p>Our companies mission is provide an unforgettable experience to stay at home parents. <br>
Whether you are looking for a place to vacation or you are providing one, <br>
you are in the right place.</p>
</div>
<h1>Meet the team </h1>
<div class="row">
<div class="column">
<div class="card">
<img src="./img/T4JUEB3ME-UJ2RVBSQP-dad1b504d31b-512.png" alt="Remi" style="width:100%">
<div class="container">
<h2>Remi Bacheru</h2>
<p class="title">Project Lead</p>
<p>Some text that describes me lorem ipsum ipsum lorem.</p>
<p>[email protected]</p>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="./img/Profile.jpg" alt="Max" style="width:100%">
<div class="container">
<h2>Max Beard</h2>
<p class="title">front-End Architect</p>
<p>Some text that describes me lorem ipsum ipsum lorem.</p>
<p>[email protected]</p>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="./img/66192735_2834625696563941_8050054462703665152_o.jpg" alt="Rodrigo" style="width:100%">
<div class="container">
<h2>Rodrigo Graca</h2>
<p class="title">Front End Architect</p>
<p>Some text that describes me lorem ipsum ipsum lorem.</p>
<p>[email protected]</p>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="./img/IMG_20190701_142824.jpg" alt="Josiah" style="width:100%">
<div class="container">
<h2>Josiah williams</h2>
<p class="title">User-Interface</p>
<p>Some text that describes me lorem ipsum ipsum lorem.</p>
<p>[email protected]</p>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
<footer>
<div class="bottom-nav">
<a href="#">Home</a>
<a href="about.html">About</a>
<a href="#">Contact</a>
<a href="#">Sign Up</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>