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 helps you understand what and where you need to modify your CSS properties, if you keep your HTML semantic, you will have a much easier time implementing your CSS.

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

block elements take up all of the available space within their parent container, while inline elements can exist within block level 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```?

vertical axis

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

it allows everyone to see the work of other devs and merge content from multiple users, also share content to other dev groups.

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
94 changes: 48 additions & 46 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,53 +12,55 @@
</head>

<body>
<div class="navigation">

<nav>
<img class="lambda-logo" src="img/lambda-black.png" alt="navlogo">
<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>
<img class="headimage" src="img/jumbo-about.png" alt="navfooter">
<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.

<div class="atext">
<h5>About</h5>
<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 class="container1">
<div class="strategy">
<img src="img/about-plan.png" alt="strategy">
<h5>Strategy</h5>
<p>Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>
<a href="#" class="learn">Learn More</a>
</div>
<div class="hww">
<img src="img/about-working.png" alt="strategy">
<h5>How We Work</h5>
<p>Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>
<a href="#" class="learn">Learn More</a>
</div>
</div>
<div class="container2">
<div class="pww">
<img src="img/about-office.png" alt="strategy">
<h5>Places We Work</h5>
<p>Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>
<a href="#" class="learn">Learn More</a>
</div>
<div class="col">
<img src="img/about-meeting.png" alt="strategy">
<h5>Collaboration</h5>
<p>Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p>
<a href="#" class="learn">Learn More</a>
</div>
</div>
<div class="lwt">
<h5>Let's Work Together</h5>
<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>
<footer>
<nav>
<a href="index.html">Home</a>
Expand Down
142 changes: 141 additions & 1 deletion css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,32 @@ p {
.container {
width: 800px;
margin: 0 auto;
/* border: 1px solid red; */
}
.navigation{
display:flex;
margin-top:20px;
margin-left:555px; /*edited */
margin-bottom:35px;
justify-content: space-between;
max-width: 800px;
}

.headimage{
margin-left:550px;
margin-bottom: 35px;
}

.navigation nav a{
text-decoration: none;
color: black;
margin-top:50px;
margin-left: 70px;
font-size: 11pt;
}

.navigation nav img{
margin-right: 20px;
}

.top-content {
Expand Down Expand Up @@ -104,7 +130,7 @@ p {
.middle-content .boxes .box {
width: 12.5%;
height: 100px;
background: black;
/* background: black; */
margin: 20px 2.5%;
color: white;
display: flex;
Expand Down Expand Up @@ -143,4 +169,118 @@ footer nav {
footer nav a {
color: white;
text-decoration: none;
}

/* About CSS parts */

.container1{
display:flex;
margin-top: 20px;
border-top: 1px dotted black;
}

.strategy{
margin-top: 20px;
border-bottom: 1px dotted grey;
border-bottom-width: 4px;
padding: 3px;
padding-bottom: 23px;
margin: 13px;
}
.hww{
margin-top: 20px;
border-bottom: 1px dotted grey;
border-bottom-width: 4px;
padding: 3px;
padding-bottom: 23px;
margin: 13px;
}

.pww{
margin-top: 20px;
border-bottom: 1px dotted grey;
border-bottom-width: 4px;
padding: 3px;
padding-bottom: 23px;
margin: 13px;
}

.col{
margin-top: 20px;
border-bottom: 1px dotted grey;
border-bottom-width: 4px;
padding: 3px;
padding-bottom: 23px;
margin: 13px;
}

.container1 div p{
margin-bottom: 14px;
}

.container2{
display:flex;
margin-top: 20px;
}

.strategy{
margin-top: 20px;
}
.hww{
margin-top: 20px;
}

.container2 div p{
margin-bottom: 14px;
}



.learn{
text-decoration: none;
color: gray;
border: 1px solid black;
border-radius: 10px;
margin: 0 10px;
padding: 10px;
margin-top: 5px;
}

.lwt{
padding: 10px;
}

h5{
margin-top:10px;
}

.box{
background: teal;
}
.box1{
background: gold;
}
.box2{
background: cadetblue;
}
.box3{
background: coral;
}
.box4{
background: crimson;
}
.box5{
background: forestgreen
}
.box6{
background: darkorchid;
}
.box7{
background: hotpink;
}
.box8{
background: indigo;
}
.box9{
background: dodgerblue;
}
34 changes: 23 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,18 @@
</head>

<body>
<div class="navigation">

<nav>
<img class="lambda-logo" src="img/lambda-black.png" alt="navlogo">
<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>
<img class="headimage" src="img/jumbo.jpg" alt="navfooter">
<div class="container">

<section class="top-content">
Expand All @@ -30,16 +42,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 box">Box 1</div>
<div class="box box1">Box 2</div>
<div class="box box2">Box 3</div>
<div class="box box3">Box 4</div>
<div class="box box4">Box 5</div>
<div class="box box5">Box 6</div>
<div class="box box6">Box 7</div>
<div class="box box7">Box 8</div>
<div class="box box8">Box 9</div>
<div class="box box9">Box 10</div>
</div>

</section>
Expand All @@ -64,7 +76,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