Skip to content

Emily Adams Sprint Challenge Submission #1320

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 7 commits into
base: master
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
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,24 @@ Edit this document to include your answers after each question. Make sure to lea

1. If you were to describe semantic HTML to the next cohort of students, what would you say?

Semantic HTML is using the tools of HTML to mark and separate various pieces of the page into different sections for styling and accessibility.

2. What are the 4 areas of the box model?

The 4 areas of the Box Model are: Content, Padding, Border, and Margin.

3. While using flexbox, what axis does the following property work on: ```align-items: center```?

The property ```align-items:center``` works on the x, or horizontal, axis.

4. Explain why git is valuable to a team of developers.

Git is valuable for file sharing amonst a team, as well as backing up previous versions if you need to remove a change you made a long time ago, or revert back to a previous version that is not broken.

5. Define mobile-first design in your own words.

Mobile-first design is when you begin by styling items to work best on a device that is more narrow than a desktop (320 pixels will display well on most devices) first, and adjust the styling to fit a wider screen later on.

You are expected to be able to answer all these questions. Your responses contribute to your Sprint Challenge grade. Skipping this section *will* prevent you from passing this challenge.

## Instructions
Expand Down
16 changes: 16 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>

<link href="https://fonts.googleapis.com/css?family=Roboto|Rubik" rel="stylesheet">
<link rel="stylesheet" href="style/index.css">
</head>
<body>
<header>
<h1>About</h1>
</header>
</body>
</html>
59 changes: 59 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<!doctype html>

<html lang="en">
<head>
<meta charset="utf-8">

<title>Sprint Challenge - Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<link href="https://fonts.googleapis.com/css?family=Roboto|Rubik" rel="stylesheet">
<link rel="stylesheet" href="style/index.css">

</head>
<body>
<header>

<nav>
<img class = "logo" src="assets/lambda-black.png" alt="Lambda">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="#">Products</a>
<a href="#">Blog</a>
</nav>

</header>

<!--I copied this form HTML from w3schools but I understand how it works-->
<!--I made this by following this tutorial https://youtu.be/f0DcnrpeBv8-->
<div class="contactForm">
<div class ="textBox">
<label for="fname">First Name</label>
<input type="text" name="" value="" placeholder="Enter your first name">
</div>

<div class ="textBox">
<label for="lname">Last Name</label>
<input type="text" name="" value="" placeholder="Enter your last name">
</div>

<div class ="textBox">
<label for="email">Email</label>
<input type="email" name="" value="" placeholder="Enter your email">
</div>

<div class ="textBox">
<label for="message">Message:</label>
<textarea></textarea>
</div>

<input type="submit" value="Submit">

</form>

</div>



</body>
</html>
44 changes: 27 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,27 @@
<html lang="en">
<head>
<meta charset="utf-8">

<title>Sprint Challenge - Home</title>

<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Roboto|Rubik" rel="stylesheet">
<link rel="stylesheet" href="style/index.css">

</head>

<body>
<div class="container">

<header>

<nav>
<img class = "logo" src="assets/lambda-black.png" alt="Lambda">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="#">Products</a>
<a href="#">Blog</a>
<a href="contact.html">Contact</a>
</nav>
<img class = "headerImg" src="assets/jumbo.jpg" alt="Header image">

</header>
<section class="top-content">
<div class="text-container">
<h2>The Future</h2>
Expand All @@ -30,16 +40,16 @@ <h2>The Past</h2>
<h2>Why Did It Have To Be Boxes...</h2>

<div class="boxes">
<div class="box">Box 1</div>
<div class="box">Box 2</div>
<div class="box">Box 3</div>
<div class="box">Box 4</div>
<div class="box">Box 5</div>
<div class="box">Box 6</div>
<div class="box">Box 7</div>
<div class="box">Box 8</div>
<div class="box">Box 9</div>
<div class="box">Box 10</div>
<div class="box box1">Box 1</div>
<div class="box box2">Box 2</div>
<div class="box box3">Box 3</div>
<div class="box box4">Box 4</div>
<div class="box box5">Box 5</div>
<div class="box box6">Box 6</div>
<div class="box box7">Box 7</div>
<div class="box box8">Box 8</div>
<div class="box box9">Box 9</div>
<div class="box box10">Box 10</div>
</div>

</section>
Expand All @@ -63,11 +73,11 @@ <h2>Moon</h2>

<footer>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="#">Products</a>
<a href="#">Blog</a>
<a href="#">Contact</a>
<a href="contact.html">Contact</a>
</nav>
</footer>
</div><!-- container -->
Expand Down
Loading