Skip to content
Open
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
25 changes: 1 addition & 24 deletions exercises/01.1-like-word/README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1 @@
---
tutorial: "https://www.youtube.com/watch?v=sPcd9egcDak"
---

# `01.1` Like Word

HTML was initially created with the purpose of publishing documents, that is why its `<tags>` are similar to the typical elements you see in a document:

| Tag name | Use case |
| -------- | -------- |
| `<p>` | To add paragraphs |
| `<strong>` | Text in bold (stronger) |
| `<h1>` | Heading with the most importance (bigger) |
| `<h2>` | Heading with the second importance (smaller) |
| `<a>` | Links or anchors |
| `<ul>` | Unordered Lists (Just the bullets) |

## 📝 Instructions:

1. Please add a `<p>` tag to your website that says: `HTML tags are similar to MS Word elements`.

## 💻 Expected Result:

![01.1 Preview HTML Exercises](../../.learn/assets/01.2-Like-Word.png?raw=true)
<p>HTML tags are similar to MS Word elements</p>