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 what gives your code meaning and readability to others. Used correctly some one who did not work on the original code would still be able to understand what each element represents without much confusion.

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

Display block acts as a box and takes up as much space as possible and responds to height and width. Inline only takes up the space it needs and and works in a line such as a <p> tag

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

border, margin, padding,and content

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

border, margin, padding,and content

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

git helps working together, but separately much easier. It allows for multiple users to make their own branch without effecting the master code. It then lets you merge and combine multiple members codes together without causing conflict

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
95 changes: 54 additions & 41 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,52 +13,65 @@

<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">
<header class= "nav-bar">
<a href="index.html"><img class="logo" src="img/lambda-black.png" alt="Great Idea! Company logo."></a>
<nav id ="navigation">
<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>
</header>

Strategy
<img class="jumbo-header-img" src="img/jumbo-about.png" alt="Cityscape at dusk.">

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

Learn More



<img src="img/about-working.png" alt="strategy">
<div class="about-header">
<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>

How We Work
<div class="about-container">
<div class="about-box">
<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 id="click">Learn More</button>
</div>

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
<div class="about-box">
<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 id="click">Learn More</button>
</div>
<div class="about-box">
<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 id="click">Learn More</button>
</div>
<div class="about-box">
<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 id="click">Learn More</button>
</div>

<div class="about-footer">
<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>
</div>

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.

<footer>
<nav>
<a href="index.html">Home</a>
Expand Down
105 changes: 103 additions & 2 deletions css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,32 @@ h1, h2, h3, h4, h5 {
p {
line-height: 1.4;
}

header{
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 30px;
}
header nav{
display: flex;
justify-content: space-between;
width: 680px;
margin-top: 20px;
margin-left: 30px;
}
header nav a{
display: inline-block;
font-size: 15px;
color: black;
text-decoration: none;
}
.container {
width: 800px;
margin: 0 auto;
}

.jumbo-header-img{
margin: 40px 0px 20px 0px;
}
.top-content {
display: flex;
flex-wrap: wrap;
Expand Down Expand Up @@ -101,6 +121,36 @@ p {
justify-content: space-evenly;
}

#box1{
background: teal;
}
#box2{
background: gold;
}
#box3{
background: cadetblue;
}
#box4{
background: coral;
}
#box5{
background: crimson;
}
#box6{
background: forestgreen;
}
#box7{
background: darkorchid;
}
#box8{
background: hotpink;
}
#box9{
background: indigo;
}
#box10{
background: dodgerblue;
}
.middle-content .boxes .box {
width: 12.5%;
height: 100px;
Expand Down Expand Up @@ -143,4 +193,55 @@ footer nav {
footer nav a {
color: white;
text-decoration: none;
cursor: pointer;
}

.about-header{
padding-bottom: 20px;
margin-bottom: 20px;
border-bottom: 1px dashed black;
}

.about-container{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.about-box{
width: 390px;
border-bottom: 1px dashed black;
margin-bottom: 20px;
padding-bottom: 10px;
}

.about-box h2{
padding-top: 10px;
}

@keyframes clicky{
from{background: black;}
to{background: grey;}
}

.about-box button{
font-size: 16px;
border: 3px solid black;
border-radius: 8px;
background: white;
margin: 15px 0px;
padding: 10px 25px;
cursor: grab;
}
#click:hover{
color: white;
font-size: 115%;
animation-name: clicky;
animation-duration: .5s;
animation-iteration-count: infinite;
}

.about-footer{
padding-bottom: 30px;
margin: 20px 0px;
}
33 changes: 22 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,18 @@

<body>
<div class="container">

<header class= "nav-bar">
<a href="index.html"><img class="logo" src="img/lambda-black.png" alt="Great Idea! Company logo."></a>
<nav id ="navigation">
<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>
</header>
<img class="jumbo-header-img" src="img/jumbo.jpg" alt="Long exposure of cars zooming along a highway.">

<section class="top-content">
<div class="text-container">
<h2>The Future</h2>
Expand All @@ -30,16 +41,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 Down