Skip to content

finished project with limited stretch goals #1311

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
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,18 @@ 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?

It's organized , and easliy read Html code. Not a cluster of un-understandable divs . Having a flow that is easy to grasp, sections, articles , headers, footers.
2. What are the 4 areas of the box model?

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

the cross-axis.
4. Explain why git is valuable to a team of developers.

It makes working on project with others easier, can easily help you debug problems by returning to an older model, and merge request one at a time so you don't completely break the code .
5. Define mobile-first design in your own words.

starting with the idea that the view-point will mainly be on mobile devices.
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

### Task 1: Project Set Up
Expand Down
97 changes: 97 additions & 0 deletions _rjtemp_mkfile.htm
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
<!DOCTYPE html>
<html>
<head>
<link rel = "stylesheet" type = "text/css" href = "C:\Users\Daniel\AppData\Roaming\RJ TextEd\Data\markdown.css" />
<title>Preview</title>
<meta http-equiv="Content-Type" content="text/html; charset="utf-8" />
</head>

<body>
<h1>Sprint Challenge: User Interface and Git</h1>
<p><strong>Read these instructions carefully. Understand exactly what is expected <em>before</em> starting this Sprint Challenge.</strong></p>
<p>This challenge allows you to practice the concepts and techniques learned over the past week and apply them in a concrete project. This Sprint explored User Interface and Git. During this Sprint, you studied semantic HTML, CSS fundamentals, git, and responsive design. In your challenge this week, you will demonstrate proficiency by creating a fully responsive website that has some missing HTML elements as well as CSS specificity problems that need to be solved.</p>
<p>This is an individual assessment. All work must be your own. Your challenge score is a measure of your ability to work independently using the material covered through this sprint. You need to demonstrate proficiency in the concepts and objectives introduced and practiced in preceding days.</p>
<p>You are not allowed to collaborate during the Sprint Challenge. However, you are encouraged to follow the twenty-minute rule and seek support from your TL if you need direction. Your work reflects your proficiency in user interface and your command of the concepts and techniques in semantic HTML, CSS fundamentals, git, and responsive design.</p>
<blockquote>
<p>You have <strong>three hours</strong> to complete this challenge. Plan your time accordingly.</p>
</blockquote>
<h2>Introduction</h2>
<p>In this challenge, you build a missing header (navigation and image) on the home page, update some CSS styling on the home page, and make your page responsive for mobile. You will be working with a pre-existing web page, allowing you to get a taste of what it is like to inherit code from someone else, as will regularly happen on the job.</p>
<p>In meeting the minimum viable product (MVP) specifications listed below, your web page should look like the solution screen shots of the home page and mobile version.</p>
<p><a href="https://tk-assets.lambdaschool.com/39a49225-8ac9-43da-aa90-514fd60ae99a_sprint-challenge-ui-home-example.png">Click here for home page example</a></p>
<p><a href="design/Tablet.png">Click here for tablet example</a></p>
<p><a href="design/Mobile.png">Click here for mobile example</a></p>
<h3>Commits</h3>
<p>Commit your code regularly and meaningfully. This helps both you (in case you ever need to return to old code for any number of reasons) and your team lead.</p>
<h2>Self-Study Questions</h2>
<p>Demonstrate your understanding of this week's concepts by answering the following free-form questions.</p>
<p>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</p>
<ol>
<li>If you were to describe semantic HTML to the next cohort of students, what would you say?
It's organized , and easliy read Html code. Not a cluster of un-understandable divs . Having a flow that is easy to grasp, sections, articles , headers, footers.</li>
<li>What are the 4 areas of the box model?
margin , border , padding , content</li>
<li>While using flexbox, what axis does the following property work on: <code>align-items: center</code>?
the cross-axis.</li>
<li>Explain why git is valuable to a team of developers.
It makes working on project with others easier, can easily help you debug problems by returning to an older model, and merge request one at a time so you don't completely break the code .</li>
<li>Define mobile-first design in your own words.
starting with the idea that the view-point will mainly be on mobile devices.
You are expected to be able to answer all these questions. Your responses contribute to your Sprint Challenge grade. Skipping this section <em>will</em> prevent you from passing this challenge.</li>
</ol>
<h2>Instructions</h2>
<h3>Task 1: Project Set Up</h3>
<ul>
<li>[ ] Create a forked copy of this project</li>
<li>[ ] Add your team lead as collaborator on Github</li>
<li>[ ] Clone your OWN version of the repository (Not Lambda's by mistake!)</li>
<li>[ ] Create a new branch: git checkout -b <code>&lt;firstName-lastName&gt;</code>.</li>
<li>[ ] Implement the project on your newly created <code>&lt;firstName-lastName&gt;</code> branch, committing changes regularly</li>
<li>[ ] Push commits: git push origin <code>&lt;firstName-lastName&gt;</code></li>
</ul>
<h3>Task 2: Minimum Viable Product</h3>
<p>Your finished project must include all of the following requirements:</p>
<h4>Home Page</h4>
<p><a href="/design">Review the provided design files</a>. Notice the navigation and header images are missing in the starter code.</p>
<ul>
<li>[ ] Build the HTML and CSS to create the missing navigation and header</li>
<li>[ ] Link the <code>About</code> navigation item to an about.html page (you'll also need to create <code>about.html</code>)</li>
<li>[ ] Make your design responsive such that it is accessible on mobile(500px)and matches the <a href="design/Mobile.png">mobile</a> wireframe.</li>
<li>[ ] Add responsive breakpoints to your code by using media queries</li>
</ul>
<p>You will also notice there are 10 boxes on the home page that need background colors. Use this list below to correctly style each box:</p>
<ul>
<li>[ ] box1: <code>teal</code></li>
<li>[ ] box2: <code>gold</code></li>
<li>[ ] box3: <code>cadetblue</code></li>
<li>[ ] box4: <code>coral</code></li>
<li>[ ] box5: <code>crimson</code></li>
<li>[ ] box6: <code>forestgreen</code></li>
<li>[ ] box7: <code>darkorchid</code></li>
<li>[ ] box8: <code>hotpink</code></li>
<li>[ ] box9: <code>indigo</code></li>
<li>[ ] box10: <code>dodgerblue</code></li>
</ul>
<p>In your solution, it is essential that you follow best practices and produce clean and professional results. Schedule time to review, refine, and assess your work and perform basic professional polishing including spell-checking and grammar-checking on your work. It is better to submit a challenge that meets MVP than one that attempts too much and does not.</p>
<h3>Task 3: Stretch Problems</h3>
<p>After finishing your required elements, you can push your work further. These goals may or may not be things you have learned in this module but they build on the material you just studied. Time allowing, stretch your limits and see if you can deliver on the following optional goals:</p>
<ul>
<li>[ ] Make your design responsive such that it is accessible on tablet(800 px) and matches the <a href="design/Tablet.png">tablet</a> wireframe.</li>
<li>[ ] Build a page of your choosing from the navigation items. Come up with content and images that fit the theme.</li>
<li>[ ] Introduce CSS animations to your site.</li>
<li>[ ] Build a contact page and create a form with several inputs of your choosing</li>
</ul>
<h2>Resources</h2>
<p>📚<a href="https://www.browserstack.com/guide/responsive-design-breakpoints">Best Practices for Responsive Design</a></p>
<p>🤝<a href="https://www.w3schools.com/html/html_responsive.asp">W3 Schools - Responsive Design</a></p>
<p>👀 <a href="https://www.w3schools.com/html/html_css.asp">Styling with HTML and CSS</a></p>
<h2>Submission format</h2>
<p>Follow these steps for completing your project.</p>
<ul>
<li>[ ] Submit a Pull-Request to merge &lt;firstName-lastName&gt; Branch into master (student's Repo). <strong>Please don't merge your own pull request</strong></li>
<li>[ ] Add your team lead as a reviewer on the pull-request</li>
<li>[ ] Your team lead will count the project as complete by merging the branch back into master</li>
</ul>

</body>
</html>
59 changes: 59 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href = "./style/index.css" rel = "Stylesheet"></link>
<title>test</title>
</head>
<body>
<div class = "main-container">
<header class = "main-header2">
<h1>My About page</h1>
<div>
<nav>
<ul class ="main-nav2">
<li><img src = "./assets/lambda-black.png" alt= "Lambda" width= "auto"></li>
<a href ="./index.html"><li>Home</li></a>
<a href ="./about.html"><li>About</li></a>
<a href ="#"><li>Products</li></a>
<a href ="#"><li>Blog</li></a>
<a href ="#"><li>Content</li></a>
</ul>
</nav>
</div>
</header>
<main>
<div class = "container">
<section class ="fun">
<p>
Fun stuff about this site would go here
</p>
</section>
<div class ="image">
<span>An image and some wrapping text will go here</span>
</div>
<article class = "info">
<p>
Information about this topic and maybe statistical graphs
</p>
</article>
</div>
</main>
<div class = "footer">
<footer>
<nav>
<ul class ="main-nav2">
<li><img src = "./assets/lambda-black.png" alt= "Lambda" width= "auto"></li>
<a href ="./index.html"><li>Home</li></a>
<a href ="./about.html"><li>About</li></a>
<a href ="#"><li>Products</li></a>
<a href ="#"><li>Blog</li></a>
<a href ="#"><li>Content</li></a>
</ul>
</nav>
</footer>
</div>
</div>
</body>
</html>
38 changes: 27 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,23 @@

<body>
<div class="container">

<header class = "main-header">
<!--<img src = "./lambda-black.png" alt= "Lambda" width= "300px">-->
<div>
<nav>
<ul class ="main-nav">
<li><img src = "./assets/lambda-black.png" alt= "Lambda" width= "auto"></li>
<a href ="./index.html"><li>Home</li></a>
<a href ="./about.html"><li>About</li></a>
<a href ="#"><li>Products</li></a>
<a href ="#"><li>Blog</li></a>
<a href ="#"><li>Content</li></a>
</ul>
</nav>
</div>
<div class ="picture">
<img src = "./assets/jumbo.jpg" alt = "space pic" width = "auto">
</div>
<section class="top-content">
<div class="text-container">
<h2>The Future</h2>
Expand All @@ -30,16 +46,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" style= "background-color:teal;">Box 1</div>
<div class="box" style= "background-color:gold;">Box 2</div>
<div class="box" style= "background-color:cadetblue;">Box 3</div>
<div class="box" style= "background-color:coral;">Box 4</div>
<div class="box" style= "background-color:crimson;">Box 5</div>
<div class="box" style= "background-color:forestgreen;">Box 6</div>
<div class="box" style= "background-color:darkorchild;">Box 7</div>
<div class="box" style= "background-color:hotpink;">Box 8</div>
<div class="box" style= "background-color:indigo;">Box 9</div>
<div class="box" style= "background-color:dodgerblue;">Box 10</div>
</div>

</section>
Expand Down
Loading