Skip to content

my second lab ever #37

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

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
129 changes: 129 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:700|Roboto:100,300,700');

html,
body {
margin: 0;
padding: 0;
font: 10px 'Roboto', sans-serif;
line-height: 3.53em;
font-weight: 300;
}
/* CSS multiselector example */

h1,h2,h3,h4,h5,h6 {
font-family: 'Roboto Condensed';
}
h1 {
font-size: 9em;
text-align: center;
text-transform: uppercase;
}
h2 {
font-size: 5em;
text-align: center;
text-transform: uppercase;
line-height: 4em;
}
h3 {
font-size: 4.2em;
text-align: center;
line-height: 1em;
}
h4 {
font-size: 1.5em;
letter-spacing: 0.4px;
line-height: 1em;
}
h5 {
font-size: 1.2em;
line-height: 1em;
}
.nav-bar {
background-color: rgb(25, 33, 41);
}
.nav-bar a {
/* styles to be added here */
color: white;
text-decoration: none;
font-size: 2em;
}

.header {
height: 650px;
background-image: url("https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironhack-skydive-background.jpg");
position: 0 0;
background-repeat: no-repeat;
size: cover;
}

h2 {
color: white;
text-shadow: #020819 8px -20px 9px;
}

.quote {
font-size: 2em;
margin: 0 100;
}

/*class selector*/
.dark-background {
background-color: rgb(25, 33, 41);
color: white;
}

.text {
font-size: 2em;
font-weight: 100;
text-align: center;
}

.link-btn {
background-color: rgb(67, 163, 230);
color: white;
font-family: 'Roboto Condensed';
font-size: 2em;
letter-spacing: 0.5px;
text-align: center;
text-decoration: none;
}

.service-box {
font-size: 1.7em;
text-align: center;
}

.service-box img {
font-size: 1.7em;
text-align: center;
}

#team .section-text {
font-size: 1.9em;
text-align: center;
}

#team .member-name {
font-size: 1.5em;
font-weight: 700;
}

#team img {
width: 250px;
height: 180px;
}

footer address {
font-style: normal;
font-size: 0.8em;
}

footer a {
color: rgb(67, 163, 230);
text-decoration: none;
}

footer ul {
list-style: none;
}

149 changes: 147 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,155 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ironskydive</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>

<!-- PASTE HERE HTML YOU CREATED IN THE FIRST LAB -->
<!--Here comes the navbar-->
<nav class="nav-bar">
<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 class="header">
<h1>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironhack-skydive-logo.png" alt="Ironskydive logo">
IronSkydive
</h1>
<h2>Let the trip begin</h2>
<aside class="quote"><i>The best experience of our life</i></aside>
<p>Ariel Quinones & Gonzalo Manrique, Ironhack Founders</p>
</header>
<!--Here comes section 1-->
<section id="general-information" class="dark-background">
<article class="service-box">
<h3>Hello</h3>
<p class="text"> Welcome to IronSkydive, the best adventure you will ever have.</p>
<a href="#" class="link-btn">Learn more</a>
</article>
<article class="service-box">
<h3>About us</h3>
<p class="text">We like a lot programming websites, but we also love to practise sport.</p>
<a href="#" class="link-btn">Watch video</a>
</article>
<article class="service-box">
<h3>Wanna join?</h3>
<p class="text">Join our fitness program to be in good shape while learning.</p>
<a href="#" class="link-btn">Register</a>
</article>
</section>
<!--Here comes section 2-->
<section id="structure">
<h3>
How do we structure the day?
</h3>
<div>
<article class="service-box">
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironskydive-training.png" alt="training image">
<h4>Training</h4>
<p>We teach all the necessary things to jump from the plane without any kind of problem.</p>
</article>
<article class="service-box">
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironskydive-get-ready.png" alt="Get ready image">
<h4>Get Ready</h4>
<p>You are already prepared, you just need the suit and the parachute. All sizes available.</p>
</article>
<article class="service-box">
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironskydive-fly.png" alt="Fly image">
<h4>Fly</h4>
<p>You are ready, and the plane is waiting for us in the hangar. Let's fly!</p>
</article>
<article class="service-box">
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironskydive-jump.png" alt="jump image">
<h4>Jump!</h4>
<p>You have done the most complicated. Just one step left...Jump!</p>
</article>
</div>
</section>
<!--Here comes section 3-->
<section id="team" class="dark-background">
<h3>Team</h3>
<p class="section-text">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 class="member-name">Harold Rothstein</h4>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_c18b1c463b80090894237a262dfdfbad.jpg"
alt="Harold Rothstein portrait">
</article>
<article>
<h4 class="member-name">Susan Phillips</h4>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_a18d6123a7c8e75f7e70a4e59b941093.jpg"
alt="Susan Phillips portrait">
</article>
<article>
<h4 class="member-name">Taylor Roberts</h4>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_7104a331530d1b0611da55093b7dc421.jpg"
alt="Taylor Roberts portrait">
</article>
</div>

</section>
<!--Here comes section 4-->
<section id="schedule">
<h3>Schedule</h3>
<h3>Schedule a time slot</h3>
<table>
<thead>
<th>Time</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
</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>
</section>
<!--Here comes the footer-->
<footer class="dark-background">
<section>
<h5>Contact Information</h5>
<address class="address">IronSkydive 33 <br>Rue la Fayette,<br> 75009 Paris,<br> 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>