Skip to content

Commit

Permalink
change links appearance
Browse files Browse the repository at this point in the history
  • Loading branch information
yosefanajjar committed Mar 1, 2020
1 parent 36e0a06 commit 3ac04ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions coursebook/session-01/elements-and-attributes.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ There are many ways of doing that but we will do it using some HTML elements:
| `<b>` | Highlight important information|
| `<strong>` | Similarly to bold, to highlight key text|
| `<i>` | To denote text |
| `<em>` | Usually used as image captions |
| `<mark>` | Highlight the background of the text |
| `<small>` | To shrink the text |
| `<strike>` | To place a horizontal line across the text |
| `<u>` | Used for links or text highlights |
| `<sub>` | Typographical stylistic choice |
| `<sup>` | Another typographical presentation style|

Check the difference between `<em>` and `<i>` https://developer.mozilla.org/en-US/docs/Web/HTML/Element/em
Check the difference between `<b>` and `<strong>` https://www.seobility.net/en/wiki/Strong_and_Bold_Tags
[Check the difference between `<em>` and `<i>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/em)

[Check the difference between `<b>` and `<strong>`](https://www.seobility.net/en/wiki/Strong_and_Bold_Tags)

To use or apply any of these formats on any text you need to just **wrap it** between the opening and closing tags

Expand Down Expand Up @@ -54,7 +54,7 @@ Ever come across a link on a webpage that took you to another one. these links a

<a href="www.google.com" target="_blank" rel="noreferrer noopener">Click Me</a>

Explaining the noreferrer and noopener in the link tag https://blog.templatetoaster.com/noopener-noreferrer/
- [Explaining the noreferrer and noopener in the link tag](https://blog.templatetoaster.com/noopener-noreferrer/)

## Images
In today’s modern digital world, images are everything. The `<img>` tag has everything you need to display images on your site.
Expand Down

0 comments on commit 3ac04ec

Please sign in to comment.