Skip to content

Nelly Montanez #1315

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 16 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
46 changes: 23 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,28 +34,28 @@ 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?/////// It's a set of tags that help accesibility readers understand the code and be able to reproduce in the desired manner from user. They're universal tags unlike divs.

2. What are the 4 areas of the box model?
2. What are the 4 areas of the box model?///// content, padding, border, margin.

3. While using flexbox, what axis does the following property work on: ```align-items: center```?
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.
4. Explain why git is valuable to a team of developers.////// It's like an online cloud for their code. If accidentally deleted or lost, it can be retrieved through github. It also allows others to fork and add more value to a specific project by making it better if the original developer is open to that idea.

5. Define mobile-first design in your own words.
5. Define mobile-first design in your own words. ///////Intended for phones/tablets. It gets to the point of the purpose of your page. Developers must make choices of what is of utmost importance due to the size and limitations of a mobile device.

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

### Task 1: Project Set Up

- [ ] Create a forked copy of this project
- [ ] Add your team lead as collaborator on Github
- [ ] Clone your OWN version of the repository (Not Lambda's by mistake!)
- [ ] Create a new branch: git checkout -b `<firstName-lastName>`.
- [ ] Implement the project on your newly created `<firstName-lastName>` branch, committing changes regularly
- [ ] Push commits: git push origin `<firstName-lastName>`
- [ X ] Create a forked copy of this project
- [ X ] Add your team lead as collaborator on Github
- [ X ] Clone your OWN version of the repository (Not Lambda's by mistake!)
- [ X ] Create a new branch: git checkout -b `<firstName-lastName>`.
- [ X ] Implement the project on your newly created `<firstName-lastName>` branch, committing changes regularly
- [ X ] Push commits: git push origin `<firstName-lastName>`

### Task 2: Minimum Viable Product

Expand All @@ -65,23 +65,23 @@ Your finished project must include all of the following requirements:

[Review the provided design files](/design). Notice the navigation and header images are missing in the starter code.

* [ ] Build the HTML and CSS to create the missing navigation and header
* [ ] Link the `About` navigation item to an about.html page (you'll also need to create `about.html`)
* [ X ] Build the HTML and CSS to create the missing navigation and header
* [ X ] Link the `About` navigation item to an about.html page (you'll also need to create `about.html`)
* [ ] Make your design responsive such that it is accessible on mobile(500px)and matches the [mobile](design/Mobile.png) wireframe.
* [ ] Add responsive breakpoints to your code by using media queries

You will also notice there are 10 boxes on the home page that need background colors. Use this list below to correctly style each box:

* [ ] box1: `teal`
* [ ] box2: `gold`
* [ ] box3: `cadetblue`
* [ ] box4: `coral`
* [ ] box5: `crimson`
* [ ] box6: `forestgreen`
* [ ] box7: `darkorchid`
* [ ] box8: `hotpink`
* [ ] box9: `indigo`
* [ ] box10: `dodgerblue`
* [ X ] box1: `teal`
* [ X ] box2: `gold`
* [ X ] box3: `cadetblue`
* [ X ] box4: `coral`
* [ X ] box5: `crimson`
* [ X ] box6: `forestgreen`
* [ X ] box7: `darkorchid`
* [ X ] box8: `hotpink`
* [ X ] box9: `indigo`
* [ X] box10: `dodgerblue`

In your solution, it is essential that you follow best practices and produce clean and professional results. Schedule time to review, refine, and assess your work and perform basic professional polishing including spell-checking and grammar-checking on your work. It is better to submit a challenge that meets MVP than one that attempts too much and does not.

Expand Down
26 changes: 26 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/index.css">
<title>About</title>
</head>
<body>
<header>
<nav>
<div class="lambda-logo"></div>
<img src="assets/lambda-black.png">
</div>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="#">Products</a>
<a href="#">Blog</a>
<a href="#">Contact</a>
</nav>
<div class=jumbo-img>
<img src="assets/jumbo.jpg">
</div>
</header>
</body>
</html>
87 changes: 48 additions & 39 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,34 @@

<html lang="en">
<head>
<meta charset="utf-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Sprint Challenge - Home</title>
<title>Sprint Challenge - Home</title>

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

</head>

<body>
<div class="container">

<section class="top-content">
<header>
<nav>
<div class="lambda-logo"></div>
<img src="assets/lambda-black.png">
</div>
<a href="#">Home</a>
<a href="about.html">About</a>
<a href="#">Products</a>
<a href="#">Blog</a>
<a href="#">Contact</a>
</nav>
<div class=jumbo-img>
<img src="assets/jumbo.jpg" class="header-image">
</div>
</header>
<div class="container">
<section class="top-content">
<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 @@ -23,29 +38,24 @@ <h2>The Future</h2>
<h2>The Past</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>
</div>
</section>

<section class="middle-content">

<h2>Why Did It Have To Be Boxes...</h2>

</div>
</section>
<section class="middle-content">
<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>

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

<section class="bottom-content">

<div class="text-container">
<h2>That's</h2>
<p>Phasellus id dui id tortor tincidunt efficitur. Proin sed quam sed tellus vestibulum ultrices quis in nunc.</p>
Expand All @@ -58,18 +68,17 @@ <h2>No</h2>
<h2>Moon</h2>
<p>Phasellus id dui id tortor tincidunt efficitur. Proin sed quam sed tellus vestibulum ultrices quis in nunc.</p>
</div>

</section>

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