Skip to content

Khalil foulks #1308

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 15 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
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,21 @@ Demonstrate your understanding of this week's concepts by answering the followin

Edit this document to include your answers after each question. Make sure to leave a blank line above and below your answer so it is clear and easy to read by your project manager

1. If you were to describe semantic HTML to the next cohort of students, what would you say?
1. If you were to describe semantic HTML to the next cohort of students, what would you say?
Semantic html gives context to the content. This makes the site more asscible to those that need screen readers and it makes it easier for other people to understand the code that’s been written.

2. What are the 4 areas of the box model?
Content, Padding, Border, Padding

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

4. Explain why git is valuable to a team of developers.
Git is valuable to developers because it allows them to manage different versions of a project while also allowing different team members to work on a project at the same time with overwriting each other’s code.

5. Define mobile-first design in your own words.
Mobile first design means designing a site with mobile in mind as the base user and then resizing various parts of the website at various breakpoints so they look better on larger screen devices.


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.

Expand Down
11 changes: 11 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
</head>
<body>
<h1>About Page</h1>
</body>
</html>
40 changes: 27 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,32 @@
<html lang="en">
<head>
<meta charset="utf-8">

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

<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>
<img class = "logo" src="assets/lambda-black.png" alt="Lambda Logo">
<div>
<nav>
<a href="#">Home</a>
<a href="about.html">About</a>
<a href="#">Products</a>
<a href="#">Blog</a>
<a href="#">Contact</a>
</nav>
</div>
</header>

<section class="top-content">
<div class="jumbo">
<img src="assets/jumbo.jpg" alt="lights">
</div>
<div class="text-container">
<h2>The Future</h2>
<p>Proin sed quam sed tellus vestibulum ultrices quis in nunc. Phasellus id dui id tortor tincidunt efficitur. Proin faucibus imperdiet erat, non varius lacus. Maecenas non nisl id turpis egestas tincidunt. Nam condimentum venenatis magna eget finibus.</p>
Expand All @@ -30,16 +44,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" id = "box1">Box 1</div>
<div class="box" id = "box2">Box 2</div>
<div class="box" id ="box3">Box 3</div>
<div class="box" id = "box4">Box 4</div>
<div class="box" id ="box5">Box 5</div>
<div class="box" id ="box6">Box 6</div>
<div class="box" id ="box7">Box 7</div>
<div class="box" id ="box8">Box 8</div>
<div class="box" id ="box9">Box 9</div>
<div class="box" id ="box10">Box 10</div>
</div>

</section>
Expand All @@ -64,7 +78,7 @@ <h2>Moon</h2>
<footer>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="about.html">About</a>
<a href="#">Products</a>
<a href="#">Blog</a>
<a href="#">Contact</a>
Expand Down
Loading