-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainweb.html
94 lines (89 loc) · 3.04 KB
/
mainweb.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">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="titulos">
<h1>Workout of the Day</h1>
<h2>Find out 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>
<div class="principal">
<h1 class="irformulario">Try our WOD app</h1>
<a class="botonencendido" href="formulario.html"></a>
</div>
<div>
<div>
<h2 class="weare">Our coaches</h2>
</div>
<div class="fotos">
<div class="integrar">
<img class="fotouno" src="crossfitter.jpg" alt="">
<div class="pegartext">
<h3>David Thompson</h3>
</div>
</div>
<div class="integrar">
<img class="fotodos" src="boxer.jpg" alt="">
<div class="pegartext">
<h3>Amy Smith-Clarke</h3>
</div>
</div>
<div class="integrar">
<img class="fototres" src="runner.jpg" alt="">
<div class="pegartext">
<h3>Manuel Santos</h3>
</div>
</div>
<div class="integrar">
<img class="fotocuatro" src="basket.jpg" alt="">
<div class="pegartext">
<h3>Alex García</h3>
</div>
</div>
</div>
</div>
</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>