forked from CarlosGaLo/lab-html-ironskydive-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
142 lines (140 loc) · 5.4 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<nav>
<ul>
<li><a href="#structure">Day Structure</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#schedule">Schedule</a></li>
</ul>
</nav>
<header>
<h1><img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironhack-skydive-logo.png" alt="logo"/>IronSkydive</h1>
<h2>Let the trip begin</h2>
<aside><i>"The best experience of our lives"</i>Ariel Quiñones & Gonzalo Manrique, Ironhack Founders<br></aside>
</header>
<section>
<article>
<h3>Hello!</h3>
<p>Welcome to IronSkydive, the best adventure you will ever have.</p>
<a href="#">Learn More</a>
</article>
<article>
<h3>About us</h3>
<p>We like a lot programming websites, but we also love to practice sport.</p>
<a href="#">Watch Video</a>
</article>
<article>
<h3>Wanna join?</h3>
<p>Join our fitness program to be in good shape while learning.</p>
<a href="#">Register</a>
</article>
</section>
<section>
<h3>How do we structure the day?</h3>
<div>
<article>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironskydive-training.png" alt="training"/>
<h4>1. Training</h4>
<p>We teach all the necessary things to jump from the plane without any kind of problem.</p>
</article>
<article>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironskydive-get-ready.png" alt"getready"/>
<h4>2. Get ready</h4>
<p>You are already prepared, you just need the suit and a parachute. All sizes available.</p>
</article>
<article>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironskydive-fly.png" alt="fly"/>
<h4>3. Fly</h4>
<p>You are ready, and the plane is waiting for us in the hangar. Let's fly!</p>
</article>
<article>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironskydive-jump.png" alt="jump"/>
<h4>4. Jump!</h4>
<p>You have done the most complicated. Just one step left... jump!</p>
</article>
</div>
</section>
<section>
<h3>Team</h3>
<p>Our team collectively has 75 years of experience, Odds are, when you jump out of the plane with these professionals, you won't go splat.</p></hr>
<div>
<article>
<h4>Harold Rothstein</h4>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_c18b1c463b80090894237a262dfdfbad.jpg" alt="harold"/>
</article>
<article>
<h4>Susan Phillips</h4>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_a18d6123a7c8e75f7e70a4e59b941093.jpg" alt="susan"/>
</article>
<article>
<h4>Taylor Roberts</h4>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_7104a331530d1b0611da55093b7dc421.jpg" alt="taylor"/>
</article>
</div>
</section>
<section>
<h3>Schedule</h3>
<table>
<thead>
<tr>
<th>Tiempo</th>
<th>Lunes</th>
<th>Martes</th>
<th>Miércoles</th>
<th>Jueves</th>
<th>Viernes</th>
<th>Sábados</th>
</tr>
</thead>
<tbody>
<tr>
<td>9:00 - 11:00</td>
<td></td>
<td></td>
<td>X</td>
<td></td>
<td>X</td>
<td>X</td>
</tr>
<tr>
<td>12:00 - 14:00</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>X</td>
<td>X</td>
</tr>
<tr>
<td>15:00 - 17:00</td>
<td></td>
<td></td>
<td>X</td>
<td>X</td>
<td>X</td>
<td>X</td>
</tr>
</tbody>
</table>
<h3>Schedule a Time Slot</h3>
</section>
<footer>
<section>
<h5>Contact Information</h5>
<address>IronSkydive<br> 33 Rue la Fayette,<br> 75009 París,<br> Francia<br> +33 (0) 619 193 088</address>
<h5>Follow Us</h5>
<ul>
<li><a href="#" target="_blank">Twitter</a></li>
<li><a href="#" target="_blank">Facebook</a></li>
<li><a href="#" target="_blank">Instagram</a></li>
</ul>
</section>
</footer>
</body>
</html>