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
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,27 @@ 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 the use of HTML to give meaningful information to the various parts (or elements) of our content. It is not just tagging our content so we can add styling and function to it with CSS and Javascript, but it also provides information about the role of the tagged elements in our page. It also gives some basic styling properties to the tagged elements, like font size, block or inline display etc.

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

Block elements take the available full width and always start with a new line.
Inline elements take only the required width and do not start with a new line.
We cannot nest inline elements inside block elements.
We can nest inline and block elements inside block elements.

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

Content-Padding-Border-Margin.

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

he cross axis.

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

With git a team of developers can work together on the same project, keeping safe every working version of the product and implementing safely their changes. They can also monitor and resolve conflicts between each ones work,before implemeting them to the project.

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
126 changes: 80 additions & 46 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,57 +7,91 @@
<title>Sprint Challenge - About</title>

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

</head>

<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

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

Learn More



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

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">

Collaboration

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

Learn More

Let's Work Together

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.
<section class="links">

<div class="logo">
<img class="logo" src="img/lambda-black.png">
</div>
<div class="menu">
<nav>
<a href="index.html">Home</a>
<a href="#">About</a>
<a href="#">Products</a>
<a href="#">Blog</a>
<a href="#">Contact</a>
</nav>
</div>

</section>

<div class="header">
<img src="img/jumbo-about.png">
</div>

<section class="top-content">
<div class="text-container">
<h2>About</h2>

<p>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>
</div>
</section>

<section class="middle-content">

<div class="image-text">
<img src="img/about-plan.png" alt="strategy">

<h2>Strategy</h2>

<p>Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>

<button>Learn More</button>
</div>
<div class="image-text">
<img src="img/about-working.png" alt="strategy">

<h2>How We Work</h2>

<p>Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>

<button>Learn More</button>
</div>

<div class="image-text">
<img src="img/about-office.png" alt="strategy">

<h2>Places We Work</h2>

<p>Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>

<button>Learn More</button>
</div>
<div class="image-text">
<img src="img/about-meeting.png" alt="strategy">

<h2>Collaboration</h2>

<p>Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>

<button>Learn More</button>
</div>
</section>>

<section class="bottom-content">

<div class="text-container">
<h2></h2>Let's Work Together</h2>

<p>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>
</div>

</section>

<footer>
<nav>
Expand Down
140 changes: 140 additions & 0 deletions css/about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

* {
box-sizing: border-box;
}

html, body {
height: 100%;
font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5 {
font-size: 18px;
margin-bottom: 15px;
font-family: 'Rubik', sans-serif;
}

p {
line-height: 1.4;
}

.container {
width: 800px;
margin: 0 auto;
}

.links {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 25px;
}

.links nav{
margin-top: 25px;
}

.links nav a {
margin: 0 38px;
}

.top-content {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
margin-top: 20px;
margin-bottom: 20px;
border-bottom: 1px dashed black;

}

.top-content .text-container {
width: 95%;
padding: 0 1%;
padding-bottom: 20px;
}

.middle-content {
margin-bottom: 20px;
border-bottom: 1px dashed black;
display: flex;
flex-wrap: wrap;
}

.image-text{
width: 45%;
margin:2%;
}

.bottom-content {
display: flex;
margin: 0 2% 20px;
justify-content: space-around;
}

footer {
width: 100%;
background: black;
}

footer nav {
width: 60%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 2%;
font-size: 14px;
}

footer nav a {
color: white;
text-decoration: none;
}
Loading