Skip to content

Brandon chiang #1329

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 2 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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ 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?

Semantic HTML is HTML that introduces meaning to the web page rather than just presentation. For example, a <p> tag indicates that the enclosed text is a paragraph. This is both semantic and presentational because people know what paragraphs are, and browsers know how to display them. In other words if you think of a house. The html is the brick and mortar of the house while CSS is the decoration of the house .
2. What are the 4 areas of the box model?

You have the content area, padding area, border area, and the margin area.
3. While using flexbox, what axis does the following property work on: ```align-items: center```?

The property above will always operate on the cross axis
4. Explain why git is valuable to a team of developers.

Git offers the type of performance, functionality, security and flexibility that most developers and teams need to develop their projects. When compared to other VCS Git is most widely accepted system owing to its universally accepted usability and performance standards
5. Define mobile-first design in your own words.

Its when a developer begins development on the mobile side and works up to desktop.
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
Expand Down
46 changes: 32 additions & 14 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,37 @@
<!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">
<link rel="stylesheet" href="style/index.css">

</head>

<body>
<body>
<div class="container">


<header class="navigation">
<nav class="navigationflex">
<div>
<img src="assets/lambda-black.png"></img>
</div>
<div>
<a >Home</a>
<a >About</a>
<a>Products</a>
<a >Blog</a>
<a>Contact</a>
</div>
</nav>

<img src="assets/jumbo.jpg">

</header>
</header>

<section class="top-content">
<div class="text-container">
<h2>The Future</h2>
Expand All @@ -30,16 +48,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="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>
Expand Down
125 changes: 122 additions & 3 deletions style/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,23 @@ p {
margin: 0 auto;
}


.navigationflex{
display:flex;
justify-content: space-between;
align-items: center;
/* border: 2px solid black; */
padding: 10px;
margin: 20px 0;

}

.navigationflex a{
padding:35px;
}
.navigation img{
margin-bottom: 15px;
}
.top-content {
display: flex;
flex-wrap: wrap;
Expand All @@ -88,6 +105,7 @@ p {
.middle-content {
margin-bottom: 20px;
border-bottom: 1px dashed black;
background-color;
}

.middle-content h2 {
Expand All @@ -104,14 +122,112 @@ p {
.middle-content .boxes .box {
width: 12.5%;
height: 100px;
background: black;
margin: 20px 2.5%;
color: black;
display: flex;
align-items: center;
justify-content: center;
}
.box1 {
background-color:teal;
width: 12.5%;
height: 100px;
margin: 20px 2.5%;
color: white;
display: flex;
align-items: center;
justify-content: center;
}

.box2 {
width: 12.5%;
height: 100px;
margin: 20px 2.5%;
background-color: gold;
color: white;
display: flex;
align-items: center;
justify-content: center;
}
.box3 {
width: 12.5%;
height: 100px;
margin: 20px 2.5%;
background-color: cadetblue;
color: white;
display: flex;
align-items: center;
justify-content: center;
}
.box4 {
width: 12.5%;
height: 100px;
margin: 20px 2.5%;
background-color: coral;
color: white;
display: flex;
align-items: center;
justify-content: center;
}
.box5 {
width: 12.5%;
height: 100px;
margin: 20px 2.5%;
background-color: crimson;
color: white;
display: flex;
align-items: center;
justify-content: center;
}
.box6 {
width: 12.5%;
height: 100px;
margin: 20px 2.5%;
background-color: forestgreen;
color: white;
display: flex;
align-items: center;
justify-content: center;
}
.box7 {
width: 12.5%;
height: 100px;
margin: 20px 2.5%;
background-color: darkorchid;
color: white;
display: flex;
align-items: center;
justify-content: center;
}
.box8 {
width: 12.5%;
height: 100px;
margin: 20px 2.5%;
background-color: hotpink;
color: white;
display: flex;
align-items: center;
justify-content: center;
}
.box9 {
width: 12.5%;
height: 100px;
margin: 20px 2.5%;
background-color: indigo;
color: white;
display: flex;
align-items: center;
justify-content: center;
}
.box10 {
width: 12.5%;
height: 100px;
margin: 20px 2.5%;
background-color: dodgerblue;
color: white;
display: flex;
align-items: center;
justify-content: center;
}
.bottom-content {
display: flex;
margin: 0 2% 20px;
Expand Down Expand Up @@ -143,4 +259,7 @@ footer nav {
footer nav a {
color: white;
text-decoration: none;
}

}