-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from Bloc/stanley-review
Closes #2
- Loading branch information
Showing
41 changed files
with
626 additions
and
445 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
### Objectives | ||
|
||
After this exercise, you should be able to: | ||
|
||
- Use paragraphs, headings, and images to build a basic profile | ||
|
||
### Example | ||
|
||
Practically every website on the planet allows users to create a profile. Profiles like those on Facebook aggregate an enormous amount of personal information: age, gender, eye color, height, weight, and the total number of hairs on your body (56,783,238 for me!). | ||
|
||
In this exercise, you will use your brand new HTML knowledge to create your own profile that reflects the best things about you! | ||
|
||
### Exercise | ||
|
||
- Create a file named, "profile.html." | ||
- Add the necessary HTML structure: `doctype`, `html`, `head`, `body`, etc. | ||
- Choose a title for your profile. | ||
- Use a combination of images, headings, and paragraphs to represent yourself. For example: | ||
- Profile Image | ||
- Heading (your name) | ||
- Paragraph (about you!) | ||
- Heading (My Secrets) | ||
- **Several paragraphs divulging all of your deepest, darkest secrets** | ||
- We won't read these (out loud) | ||
- Submit whenever you're satisfied with your profile, no rush. | ||
- And most importantly, **have fun**! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
### Objectives | ||
|
||
After this exercise, you should be able to: | ||
|
||
- Define "hyperlink" | ||
- Understand and use the `<a>` tag | ||
|
||
### Example | ||
|
||
Tables are good for showing a lot of data, but what if the user wants more information? What type of grammatical structure does Hawaiian have? Are there alternative spellings of "Luxembourgish?" Which languages affected the development of Swahili? | ||
|
||
To help them, we can provide links (short for "hyperlinks") to other pages on the internet. | ||
|
||
A link takes the following format: | ||
|
||
```html | ||
<a href="http://www.example.com">Example Website</a> | ||
``` | ||
|
||
It looks like this when rendered: | ||
|
||
> <a href="http://www.example.com">Example Website</a> | ||
The `href` attribute, like `src` in the `<img>` tag, contains a relative or absolute URL. The text between the tags represents the link's title. | ||
|
||
### Exercise | ||
|
||
- Link `Swahili` to `https://en.wikipedia.org/wiki/Swahili_language`. | ||
- After the table, add a paragraph that reads, "For additional translations, visit Bing Translator." | ||
- Link `Bing Translator` to `https://www.bing.com/translator`. |
Oops, something went wrong.