Skip to content
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 @@ -34,14 +34,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 HTML code that uses specific tags in order to provide meaning to one's code. For example, instead of using ```<div>``` tags for a navbar or a section, we can use ```<nav>``` or ```<section>``` tags.

2. Name two big differences between ```display: block;``` and ```display: inline;```.

When an element has ```display: block;```, that element takes up the entire horizontal space and pushes all other elements to the next line. ```display: inline;``` only takes up as much horizontal space as the content requires. In addition, elements with ```display: block;``` can use box-model properties (padding, border, and margin) while ```display: inline;``` does not have access to those properties.

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

The 4 areas of the box model are content, padding, border, and margin.

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

```align-items: center``` works on the cross axis.

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

Git is valuable to a team of developers because it allows one to create their own branch of a repository, work on that branch, and then merge that branch with the master branch. This allows a team of developers to work on different parts of a project and then merge them all together, which is very efficient. In addition, git saves one's work each time they commit, which allows them go back to previous version of their repository.

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.

## Project Set Up
Expand Down
114 changes: 73 additions & 41 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,59 +13,91 @@

<body>
<div class="container about-page">

About

Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.


<img src="img/about-plan.png" alt="strategy">

Strategy

Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.

Learn More



<img src="img/about-working.png" alt="strategy">

How We Work
<!------------------------------------------- START HEADER -------------------------------->
<header>
<nav class="navbar">
<img class="nav-logo" src="img/lambda-black.png" alt="">

<div class="nav-links">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" href="about.html">About</a>
<a class="nav-link" href="#">Products</a>
<a class="nav-link" href="#">Blog</a>
<a class="nav-link" href="contact.html">Contact</a>
</div>
</nav>

<img class="top-image" src="/img/jumbo-about.png" alt="">

<section class="top-text">
<h5 class="top-text-title">About</h5>

<p class="top-text-paragraph">Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.</p>
</section>
</header>
<!------------------------------------------- END HEADER -------------------------------->

<!------------------------------------------- START MAIN -------------------------------->
<main>

<article class="about-card">
<img class="about-card-img" src="img/about-plan.png" alt="strategy">

<h5 class="about-card-title">Strategy</h5>

<p class="about-card-text">Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>

Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.

Learn More



<img src="img/about-office.png" alt="strategy">
<button class="about-card-button">Learn More</button>
</article>

<article class="about-card">
<img class="about-card-img" src="img/about-working.png" alt="strategy">

<h5 class="about-card-title">How We Work</h5>

<p class="about-card-text">Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>

Places We Work

Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.

Learn More

<img src="img/about-meeting.png" alt="strategy">
<button class="about-card-button">Learn More</button>
</article>

<article class="about-card">
<img class="about-card-img" src="img/about-office.png" alt="strategy">

<h5 class="about-card-title">Places We Work</h5>

<p class="about-card-text">Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>

Collaboration
<button class="about-card-button">Learn More</button>
</article>

<article class="about-card">
<img class="about-card-img" src="img/about-meeting.png" alt="strategy">

<h5 class="about-card-title">Collaboration</h5>

<p class="about-card-text">Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>

Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.
<button class="about-card-button">Learn More</button>
</article>

Learn More
</main>
<!------------------------------------------- END MAIN -------------------------------->

Let's Work Together
<!------------------------------------------- START BOTTOM TEXT -------------------------------->
<section class="bottom-text">
<h5 class="bottom-text-title">Let's Work Together</h5>

<p class="bottom-text-paragraph">Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.</p>
</section>

Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.

<!------------------------------------------- START FOOTER-------------------------------->
<footer>
<nav>
<a href="index.html">Home</a>
<a href="#">About</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
77 changes: 77 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<!doctype html>

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

<title>Sprint Challenge - Home</title>

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

</head>

<body>
<div class="container">
<!------------------------------------------- START HEADER -------------------------------->
<header>
<nav class="navbar">
<img class="nav-logo" src="img/lambda-black.png" alt="">

<div class="nav-links">
<a class="nav-link" href="#">Home</a>
<a class="nav-link" href="about.html">About</a>
<a class="nav-link" href="#">Products</a>
<a class="nav-link" href="#">Blog</a>
<a class="nav-link" href="#">Contact</a>
</div>
</nav>

<div class="contact-image"></div>
</header>
<!------------------------------------------- END HEADER -------------------------------->

<!------------------------------------------- START TOP CONTENT -------------------------------->
<section class="top-content">
<h2 class="contact-title">Contact</h2>
</section>

<!------------------------------------------- START MIDDLE CONTENT -------------------------------->
<section class="contact-middle-content">
<form class="contact-form" action="">
<div class="contact-form-input">
<div class="contact-form-title">First Name:</div>
<input id="first-name" type="text">
</div>

<div class="contact-form-input">
<div class="contact-form-title">Last Name:</div>
<input id="last-name" type="text">
</div>

<div class="contact-form-input">
<div class="contact-form-title">Email:</div>
<input id="email" type="email">
</div>

<div class="contact-form-input">
<div class="contact-form-title">Phone:</div>
<input id="email" type="text">
</div>

</form>

</section>
<!------------------------------------------- START FOOTER -------------------------------->
<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><!-- container -->
</body>
</html>
Loading