| A | B |
| <noscript></noscript> | Your browser does not support JavaScript! |
| <details></details> | tag specifies additional details that the user can open and close on demand. |
| <article></article> | tag specifies independent, self-contained content. |
| _self | Default.Opens the document in the same window/tab as it was clicked |
| _blank | Opens the document in a new window or tab |
| _parent | Opens the document in the parent frame |
| _top | Opens the document in the full body of the window |
| Absolute URL | <p><a href="https://www.w3.org/">W3C</a></p> |
| Relative URL | <p><a href="html_images.asp">HTML Images</a></p> |
| CSS Box Content | The content of the box, where text and images appear |
| CSS Box Padding | Clears an area around the content. |
| CSS Box Border | A border that goes around the padding and content |
| CSS Box Margin | Clears an area outside the border. |
| text-decoration: overline; |  |
| text-decoration: line-through; |  |
| text-decoration: underline; |  |
| text-decoration: underline overline; |  |
| text-decoration-color: #0000ff; | blue |
| text-decoration-color: #ff0000; | red |
| text-decoration-color: rgb(0, 255, 0); | green |