Skip to content

Commit 8c59581

Browse files
committed
initial commit
0 parents  commit 8c59581

File tree

4 files changed

+117
-0
lines changed

4 files changed

+117
-0
lines changed

README.md

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
# Intro CSS Module Challenge
2+
3+
The module challenge is the afternoon project or assignment that students work through independently. This expands on the guided project completed earlier with the instructor.
4+
5+
## User Interface and Git
6+
7+
## Objectives
8+
9+
- implement a CSS reset and understand why it’s important for cross-browser development
10+
- demonstrate CSS specificity and inheritance to create and update styles
11+
- identify and explain all properties in the box model
12+
13+
## Introduction
14+
15+
In this challenge you will be styling a single page with more advanced CSS. This page is a take on the government's [national parks website](https://www.nps.gov/yose/index.htm) and includes some basic information about Yosemite National Park in California.
16+
17+
The styles in your [design file](/design/desktop.png) include bright colors and fun icons to get people excited about exploring the outdoors. With a little work, this could even be refactored into a 3rd-party national parks guide site or blog.
18+
19+
## Instructions
20+
21+
### Task 1: Set Up The Project With Git
22+
23+
Follow these steps to set up and work on your project:
24+
25+
- [ ] Create a forked copy of this project.
26+
- [ ] Add your Team Lead as collaborator on Github.
27+
- [ ] Clone your OWN version of the repository (Not Lambda's by mistake!).
28+
- [ ] Create a new branch: git checkout -b `<firstName-lastName>`.
29+
- [ ] Implement the project on your newly created `<firstName-lastName>` branch, committing changes regularly.
30+
- [ ] Push commits: git push origin `<firstName-lastName>`.
31+
32+
### Task 2: Minimum Viable Product
33+
34+
Once your repository is set up, practice what you learned today to style the site according to the given design. Your complete project should look similar to the desktop image. You should take the following actions, at a minimum:
35+
36+
- [ ] Link your CSS stylesheet to `index.html`
37+
- [ ] Markup html semantically, such that it can be styled according to the given desktop image
38+
- [ ] Color the background of items in the navigation bar and footer with the following colors:
39+
- [ ] Plan your Visit: `#FF764E`
40+
- [ ] Learn About the Park: `#5ED3EB`
41+
- [ ] Get Involved: `#FFCD69`
42+
- [ ] Change all font colors and styles according to design file
43+
- [ ] Yosemite Park Guide font is called Chelsea Market and can be found on [google fonts](https://fonts.google.com/specimen/Chelsea+Market)
44+
- [ ] All other text is Roboto Mono, also available on [google fonts](https://fonts.google.com/specimen/Roboto+Mono)
45+
- [ ] Color the background of the main text body with `#DDB9A3`
46+
- [ ] Color the background of the footer with `#F9E7DC`
47+
- [ ] Bold the words "current fire restrictions" and "park entrance fee" according to the design file
48+
- [ ] Apply box model properties (content, padding, margin, and border) to all content such that your webpage matches the design file. This will include at least:
49+
- [ ] A round image in the header
50+
- [ ] Round corners on navigation and footer items
51+
- [ ] Header image and text side by side
52+
- [ ] Centered content and margins around content
53+
- [ ] Footer image positioning
54+
55+
**Throughout your design you should avoid static units (pixels), and should instead use responsive units wherever possible.**
56+
57+
### Task 3: Stretch Goals
58+
59+
The following goals are designed to stretch your knowledge and may require additional research beyond what was learned in class today.
60+
61+
- [ ] Add CSS animations (hover, mouseover, etc.)
62+
- [ ] Design and execute your own pages for `Plan your Visit`, `Learn About the Park`, or `Get Involved`
63+
- [ ] Use [favicon.io](favicon.io) to convert the campfire and RV images to real favicons and use them in your project
64+
- [ ] Host your website on Netlify.com
65+
66+
## Resources
67+
68+
👋 [Assignment help: w3 CSS tutorials](https://www.w3schools.com/css/)
69+
70+
👀 [Yosemite National Park Official Website](https://www.nps.gov/yose/index.htm)
71+
72+
## Submission format
73+
74+
Follow these steps for completing your project.
75+
76+
- [ ] Submit a pull request to merge <firstName-lastName> Branch into master (student's Repo). **Please don't merge your own pull request**
77+
- [ ] Add your Team Lead as a reviewer on the pull request
78+
- [ ] Your Team Lead will count the project as complete by merging the branch back into master

design/desktop.png

985 KB
Loading

index.css

Whitespace-only changes.

index.html

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!-- Link your CSS stylesheet -->
2+
<!-- Then, markup the content below with tags and attributes such that it can be styled in CSS-->
3+
4+
<!DOCTYPE html>
5+
<html lang="en">
6+
<head>
7+
8+
9+
</head>
10+
<body>
11+
Plan your Visit
12+
Learn about the Park
13+
Get Involved
14+
15+
16+
"https://static01.nyt.com/images/2018/11/11/travel/11yosemite2/merlin_145320882_abb47a0c-1a15-402a-8d30-9dcb7073e46b-superJumbo.jpg"
17+
Yosemite Park Guide
18+
Come explore California’s beautiful wilderness.
19+
Always open. Reservations are not available or required to enter the park.
20+
21+
Not just a great valley, but a shrine to human foresight, the strength of granite, the power of glaciers, the persistence of life, and the tranquility of the High Sierra.
22+
23+
First protected in 1864, Yosemite National Park is best known for its waterfalls, but within its nearly 1,200 square miles, you can find deep valleys, grand meadows, ancient giant sequoias, a vast wilderness area, and much more.
24+
25+
"https://image.flaticon.com/icons/svg/2979/2979348.svg"
26+
Fire is a natural and essential part of Yosemite. We manage fire carefully and study how it interacts with the park’s ecosystems. This blog provides updates about fires in Yosemite. Check for current fire restrictions.
27+
28+
"https://image.flaticon.com/icons/svg/820/820374.svg"
29+
We strongly recommend that you make reservations for lodging, camping, and backpacking. You can pay the park entrance fee upon arrival (there's no need to pay it in advance).
30+
31+
"https://www.yourtownmonthly.com/wp-content/uploads/2019/08/Daycation-Yosemite.png"
32+
33+
34+
Plan your Visit
35+
Learn about the Park
36+
Get Involved
37+
38+
</body>
39+
</html>

0 commit comments

Comments
 (0)