Skip to content

Tyler Taylor #1325

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 7 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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,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 the foundation of good HTML. It allows you to mark up your HTML and give meaning through tags to the different parts of HTML.

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

Margin, Border, Padding, and Content

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

Cross Axis

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

It allows any number of people to share, collaborate, review, edit, and build code while keeping projects neat and organized for all current and future edits.

5. Define mobile-first design in your own words.

Mobile-First design is where your layout for mobile devices first and then possibly expand to larger devices such as 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
1 change: 1 addition & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
About Page
40 changes: 27 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,29 @@
<html lang="en">
<head>
<meta charset="utf-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sprint Challenge - Home</title>

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

</head>

<body>
<header>
<nav>
<div class="navbar">
<img src="assets/lambda-black.png" alt="lambda-black">
<div class="home"><a href="#">Home</a></div>
<div class="about"><a href="about.html">About</a></div>
<div class="projects"><a href="#">Projects</a></div>
<div class="blog"><a href="#">Blog</a></div>
<div class="contact"><a href="#">Contact</a></div>
</div>
</nav>
</header>

<div class="mainimage">
<img src="assets/jumbo.jpg">
</div>
<div class="container">

<section class="top-content">
Expand All @@ -30,16 +44,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
Loading