-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutus.html
66 lines (62 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="titulos">
<h1>Workout of the Day</h1>
<h2>Choose the most adapted exercises for you!</h2>
</div>
<div class="botonesheader">
<a href="mainweb.html"><strong> Main site</strong></a>
<a href="formulario.html"><strong> WOD</strong></a>
<a href="aboutus.html"><strong> About Us</strong></a>
<a href="#"><strong> Equipment</strong></a>
<a href="#"><strong> Events</strong></a>
<a href="#"><strong>Subscribe</strong></a>
</div>
</header>
<main>
<h1 class="aboutus">About Us</h1>
<p>We are a group of friends who like to share our passion about fitness with all of you. We follow the
guidelines of the most reputed athletes in the worldwide, we practise Crossfit ®, football, tennis and
basketball, among others sports. We often recommend sports events close to your city, pay attention!</p>
<p>
Thank you for visiting us. Please subscribe if you want more information.
</p>
<img src="https://fotografias.flooxernow.com/clipping/cmsimages01/2019/07/22/AA47954D-0654-4226-A77B-3F354AFD7FF5/58.jpg" alt="">
</main>
<footer>
<div>
<p><a href="mainweb.html">Main site</a></p>
<p><a href="formulario.html">WOD</a></p>
<p><a href="aboutus.html">About Us</a></p>
<p><a href="#">Equipment</a></p>
<p><a href="#">Events</a></p>
</div>
<div>
<p><a href="#">David Thompson</a></p>
<p><a href="#">Amy Smith-Clarke</a></p>
<p><a href="#">Manuel Santos</a></p>
<p><a href="#">Alexandra García</a></p>
</div>
<div>
<ul>Adress:
<li>Alameda Urquijo 32</li>
<li>48001</li>
<li>Bilbao (Bizkaia)</li>
</ul>
<ul> Contact Us:
<li>Phone: xxx xxx 654</li>
<li>Fax: xxx xxx 721</li>
<li>E-mail: [email protected]</li>
</ul>
</div>
</footer>
</body>
</html>