Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

done #97

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

done #97

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
156 changes: 152 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,159 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<title>IronSkydive</title>
<link rel="stylesheet" href="styles.css">
</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>IronSkydive</h1>
<h2>Let the trip begin</h2>
<aside><i>The best experience of our lives</i><br>
<p>Ariel Quiónes & Gonzalo Manrique, Ironhack CEOs</p></aside>
</header>
<section id="section1">
<h3>Welcome</h3>
<div>
<article>
<h3>Hello!</h3>
<p>Welcome to IronSkydive, the greatest adventure of your life.</p>
<a href="#">Learn More</a>
</article>
<article>
<h3>About us</h3>
<p>We like programming websites, but we also love the adrenaline rush.</p>
<a href="#">Watch Video</a>
</article>
<article>
<h3>Wanna join?</h3>
<p>Sign up so you can become a better programmer, and cooler person.</p>
<a href="#">Register</a>
</article>
</div>
</section>
<section id="structure">
<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>Training</h4>
<p>We teach you everything you need to know to jump from a plane.</p>
</article>
<article>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironskydive-get-ready.png" alt="Get ready">
<h4>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>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>Jump!</h4>
<p>The complicated part is out of the way. Just one step left... jump!</p>
</article>
</div>
</section>
<section id="team">
<h3>Team</h3>
<div>
<article>
<h4>Harold Rothstein</h4>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_c18b1c463b80090894237a262dfdfbad.jpg" alt="Harold Rothstein">
</article>
<article>
<h4>Susan Phillips</h4>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_a18d6123a7c8e75f7e70a4e59b941093.jpg" alt="Susan Phillips">
</article>
<article>
<h4>Taylor Roberts</h4>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_7104a331530d1b0611da55093b7dc421.jpg" alt="Taylor Roberts">
</article>
</div>
</section>
<section id="schedule">
<h3>Schedule</h3>
<table>
<thead>
<tr>
<th>Time</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
</tr>
</thead>
<tbody>
<tr>
<td>9:00 - 11:00</td>
<td>X</td>
<td>X</td>
<td>X</td>
<td></td>
<td></td>
<td>X</td>
</tr>
<tr>
<td>12:00 - 14:00</td>
<td></td>
<td>X</td>
<td></td>
<td>X</td>
<td></td>
<td></td>
</tr>
<tr>
<td>15:00 - 17:00</td>
<td>X</td>
<td></td>
<td>X</td>
<td>X</td>
<td>X</td>
<td>X</td>
</tr>
</tbody>
</table>
<h3>Schedule a Time Slot</h3>
<form>
<label for="email">Email:</label>
<input type="email" id="email" name="email"><br>
<label for="participants">Participants:</label>
<input type="number" id="participants" name="participants"><br>
<label for="date">Date:</label>
<input type="date" id="date" name="date"><br>
<label for="time">Time:</label>
<input type="time" id="time" name="time"><br>
<button type="submit">Reserve Your Slot</button>
</form>
</section>
<footer>
<section>
<h5>Contact Information</h5>
<address>
IronSkydive<br>
33 Rue la Fayette<br>
75009 Paris, France<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>
</html>
109 changes: 109 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

nav ul {
list-style-type: none;
padding: 0;
background-color: #333;
text-align: center;
}

nav ul li {
display: inline;
margin-right: 10px;
}

nav ul li a {
color: #fff;
text-decoration: none;
padding: 15px 20px;
display: inline-block;
}

nav ul li a:hover {
background-color: #555;
}

header {
text-align: center;
color: #fff;
background: url('your_uploaded_image_path.png') no-repeat center center/cover;
padding: 100px 0;
}

header h1 {
font-size: 3em;
}

header h2 {
font-size: 1.5em;
}

header aside {
font-size: 1.2em;
margin-top: 20px;
}

section {
padding: 20px;
margin: 20px 0;
}

section h3 {
text-align: center;
margin-bottom: 20px;
}

#structure div, #team div, #section1 div {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}

article {
background-color: #fff;
padding: 20px;
margin: 10px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
text-align: center;
flex: 1 1 200px;
}

article img {
max-width: 100px;
margin-bottom: 10px;
}

footer {
background-color: #222;
color: #fff;
padding: 20px;
text-align: center;
}

footer address, footer ul {
margin: 0;
padding: 0;
list-style-type: none;
}

footer ul li {
display: inline;
margin-right: 10px;
}

footer ul li a {
color: #fff;
text-decoration: none;
}

footer iframe {
```css
width: 100%;
height: 450px;
border: none;
}