Skip to content

complete css and add class tags in html #44

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 1 commit 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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
160 changes: 160 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,160 @@
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:700|Roboto:100,300,700");

/* General Settings */
html,
body {
margin: 0;
padding: 0;
}

/* Body Font Settings */
body {
font-family: "Roboto", sans-serif;
font-size: 10px;
line-height: 3.5em;
font-weight: 300;
}

/* Header Font Settings */
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Roboto Condensed", sans-serif;
}

/* Header Text Properties */
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;
}

/* Colors */
:root {
--blue: rgb(67, 163, 230);
--dark-blue: rgb(25, 33, 41);
--text-color: rgb(0, 0, 0);
}

/* Navigation Bar */
.nav-bar {
background-color: var(--dark-blue);
}

.nav-bar a {
color: white;
text-decoration: none;
font-size: 2em;
}

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

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

.quote {
font-size: 2.5em;
}

/* Sections */
.dark-background {
background-color: var(--dark-blue);
color: white;
}

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

.link-btn {
background-color: var(--blue);
color: white;
font-family: "Roboto Condensed", sans-serif;
font-size: 2em;
letter-spacing: 0.5px;
text-align: center;
text-decoration: none;
}

/* Section 2 */
.service-box {
font-size: 1.7em;
text-align: center;
}

.service-box img {
width: 125px;
}

/* Section 3 */
#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 */
.footer {
text-align: center;
font-size: 1.9em;
}

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

.footer a {
color: var(--blue);
text-decoration: none;
}

.footer ul {
list-style: none;
}
162 changes: 158 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,168 @@
<!DOCTYPE html>
<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>Ironskydive</title>
<link rel="stylesheet" href="./css/style.css">
<title>IronSkydive</title>
</head>

<body>

<!-- PASTE HERE HTML YOU CREATED IN THE FIRST LAB -->

<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 lives</i>
<p>Ariel Quiónes &amp; Gonzalo Manrique, Ironhack Founders</p>
</aside>
</header>

<section id="general-information" class="dark-background">
<article>
<h3>Hello!</h3>
<p class="text">Welcome to IronSkydiving, the best adventure you will ever have</p>
<a href="#" class="link-btn">Learn More</a>
</article>
<article>
<h3>About us</h3>
<p class="text">We like a lot of programming websites, but we also love to practise sport.</p>
<a href="#" class="link-btn">Watch Video</a>
</article>
<article>
<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>

<section id="structure">
<h3>How do we structure the day?</h3>
<div>
<article class="service-box">
<h4>1. Training</h4>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironskydive-training.png"
alt="Training">
<p>We teach you everything you need to know to jump from a plane</p>
</article>
<article class="service-box">
<h4>2. Get ready</h4>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironskydive-get-ready.png"
alt="Get Ready">
<p>You are already prepared, you just need a suit and a parachute. All sizes available</p>
</article>
<article class="service-box">
<h4>3. Fly</h4>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironskydive-fly.png" alt="Fly">
<p>You are ready, and the plane is waiting for you in the hangar. Let's fly!</p>
</article>
<article class="service-box">
<h4>4. Jump</h4>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironskydive-jump.png" alt="Jump">
<p>The complicated part is out of the way. Just one step left. Jump!</p>
</article>
</div>
</section>

<section id="team" class="dark-background">
<h3>Team</h3>
<p class="section-text">Our team collectively has 76 years of experience. Odds are, when you jump out of the
plane with these guys (and girls), 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">
</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">
</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">
</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></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 class="dark-background footer">
<section>
<h5>Contact Information</h5>
<address class="address">
IronSkydive<br>
33 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>