Skip to content
Merged
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
1 change: 1 addition & 0 deletions .vscode/dictionaries/code-entities.txt
Original file line number Diff line number Diff line change
Expand Up @@ -716,6 +716,7 @@ strncpy
SUBDOCUMENT
sund
sunu
superellipse
superspeed
SVGMPathElement
svgref
Expand Down
4 changes: 4 additions & 0 deletions .vscode/dictionaries/proper-names.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ Blackman
Blackmoon
Blankers
Bloggs
Bobtown
Bodmin
Boonie
bottosson
Expand Down Expand Up @@ -205,6 +206,7 @@ Frida
Galinski
Gandi
Gayatri
Gaye
Gebrselassie
geckodriver
Gedit
Expand Down Expand Up @@ -334,6 +336,7 @@ Lighttpd
Lindenberg
Lindesay
Liskov
Lorc
Loycom
Luxon
Léonie
Expand Down Expand Up @@ -398,6 +401,7 @@ Musicr
Mustafa
myshov
Müller
Nabors
Naeher
Nakamura
Nakano
Expand Down
1 change: 1 addition & 0 deletions .vscode/dictionaries/terms-abbreviations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,7 @@ resends
resizability
respecified
restartless
Resveratrol
retarget
retargeted
retargetings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ priority:

Turning H2O into wine, and the health benefits of Resveratrol
(C14H12O3.)
Measuring the effect on performance of funk bassplayers at temperatures
Measuring the effect on performance of funk bass players at temperatures
exceeding 30°C (86°F), when the audience size exponentially increases
(effect of 3 × 103 increasing to 3 × 104.)
HTML, Hypertext Markup Language, and CSS,
Expand All @@ -77,7 +77,7 @@ Exotic dance moves

Yes, you are right! As part of my post-doctorate work, I
did study exotic tribal dances. To answer your question, my
favourite dances are as follows, with definitions:
favorite dances are as follows, with definitions:

Polynesian chicken dance
A little known but very influential dance dating back as far as
Expand Down Expand Up @@ -268,7 +268,7 @@ Your finished HTML should look like this:
(C<sub>14</sub>H<sub>12</sub>O<sub>3</sub>.)
</li>
<li>
Measuring the effect on performance of funk bassplayers at temperatures
Measuring the effect on performance of funk bass players at temperatures
exceeding 30°C (86°F), when the audience size exponentially increases
(effect of 3 × 10<sup>3</sup> increasing to 3 × 10<sup>4</sup>.)
</li>
Expand All @@ -289,7 +289,7 @@ Your finished HTML should look like this:
<p>
Yes, you are right! As part of my post-doctorate work, I
<em>did</em> study exotic tribal dances. To answer your question, my
favourite dances are as follows, with definitions:
favorite dances are as follows, with definitions:
</p>

<dl>
Expand All @@ -311,7 +311,7 @@ Your finished HTML should look like this:
<dt>Arctic robot dance</dt>
<dd>
An interesting example of historic misinformation, English explorers in
the 1960s believed to have discovered a new dance style characterised by
the 1960s believed to have discovered a new dance style characterized by
"robotic", stilted movements, being practiced by inhabitants of Northern
Alaska and Canada. Later on however it was discovered that they were
just moving like this because they were really cold.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Structuring a page of content ready for laying it out using CSS is a very import

## Starting point

To solve this challenge we are expecting you to create a simple website project, either inside a folder on your computer's harddrive, or using an online editor such as [CodePen](https://codepen.io/) or [JSFiddle](https://jsfiddle.net/). Much of the code you need is already provided.
To solve this challenge we are expecting you to create a simple website project, either inside a folder on your computer's hard drive, or using an online editor such as [CodePen](https://codepen.io/) or [JSFiddle](https://jsfiddle.net/). Much of the code you need is already provided.

1. Create a new folder in an appropriate location on your computer called `structuring-html-challenge` (or open an online editor and take the required steps to create a new project).
2. Save the following HTML listing inside a file inside your folder called `index.html` (or paste it into your online editor's HTML pane).
Expand Down Expand Up @@ -48,7 +48,7 @@ To solve this challenge we are expecting you to create a simple website project,
get out into the great outdoors!
</p>

<h2>Favourite photos</h2>
<h2>Favorite photos</h2>

<!-- Link images here. -->

Expand Down Expand Up @@ -220,7 +220,7 @@ For this project, your task is to take the content for the homepage of a bird wa
2. The "Home", "Get started", "Photos", "Gear", and "Forum" text items should be turned into a navigation menu.
1. Mark them up as an unordered list.
2. Inside each list item, wrap the text inside an `<a>` element that points to a URL of `#` (which creates a dummy link).
3. Remove the `<!-- Link images here. -->` comment. Replace it with a set of four thumbnail images of the "favourite birds". Each one should include some appropriate alternative text to describe the image, and be wrapped in an `<a>` element that links to the full-sized equivalent.
3. Remove the `<!-- Link images here. -->` comment. Replace it with a set of four thumbnail images of the "favorite birds". Each one should include some appropriate alternative text to describe the image, and be wrapped in an `<a>` element that links to the full-sized equivalent.

### Structural requirements

Expand Down Expand Up @@ -312,7 +312,7 @@ Your finished HTML should look like this:
</article>

<aside>
<h2>Favourite photos</h2>
<h2>Favorite photos</h2>

<a
href="https://mdn.github.io/shared-assets/images/examples/learn/birds/favorite-bird-1.jpg">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ This module takes you through the essentials of version control using Git and Gi
- : Forking projects is essential when you want to contribute to someone else's code. This guide explains how.
- [About Pull Requests (from GitHub)](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests)
- : A useful guide to managing pull requests. These requests are how you propose code changes to someone else's repository so they can review and potentially merge them into the main codebase.
- [About issues (from GitHub)](https://docs.github.com/en/issues/tracking-your-work-with-issues/about-issues)
- [About issues (from GitHub)](https://docs.github.com/en/issues/tracking-your-work-with-issues/learning-about-issues/about-issues)
- : Issues are like a forum for your GitHub project, where people can ask questions and report problems, and you can manage updates (for example assigning people to fix issues, clarifying the issue, letting people know things are fixed). This article tells you what you need to know about issues.

> [!NOTE]
Expand Down
Loading