Add some style to your page #7
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Step 12: Make it beautiful
You may be wondering why your page hasn't looked exactly the same as the sample I showed in the beginning. That's because HTML gives your webpage structure, but the simple tags you have learned so far don't tell the web browser how you want each page element to appear.
The appearance of each page element is defined through styles and is the subject of another course. For now, I have added a stylesheet for you.
For your webpage to use your new stylesheet, you just need to link it within the
<head>of yourindex.htmlfile. If you include the following link in yourindex.htmlfile, your webpage will begin using the css file to make your website look awesome!As an example, your
index.htmlfile might look like this:⌨️ Activity: Create a style to your site
index.htmlfile in theadd-stylebranch by using this direct link or going to the Code tab, selecting theadd-stylebranch, clicking on theindex.htmlfile, and clicking the pencil 📝 to edit.<head>tags, add the following<link rel="stylesheet" href="style.css">.I'll respond when I detect you've committed in this pull request.