Add styling for more HTML tags

Hope @gabs doesn't mind XD
This commit is contained in:
daudix
2024-07-05 04:11:14 +03:00
parent 3cead8e440
commit 164385b720
3 changed files with 140 additions and 3 deletions

View File

@ -359,6 +359,62 @@ To switch the keyboard layout, press <kbd>⌘ Super</kbd> + <kbd>Space</kbd>.
You know what? I'm gonna say some <mark>very important</mark> stuff, so <mark>important</mark> that even **bold** is not enough.
## Deleted and Inserted
```html
<del>Text deleted</del> <ins>Text added</ins>
```
<del>Text deleted</del> <ins>Text added</ins>
## Time
```html
<time>13:37</time>
```
<time>13:37</time>
For blinking animation, make the time bold
```html
<time>**13:37**</time>
```
<time>**13:37**</time>
## Progress bar
```html
<progress value="33" max="100"></progress>
```
<progress value="33" max="100"></progress>
## Sample Output
```html
<samp>Sample Output</samp>
```
<samp>Sample Output</samp>
## Inline Quote
```html
<q>Inline Quote</q>
```
Blah blah <q>Inline Quote</q> hmm.
## Grammar Mistakes
```html
<u>Trying to replicate grammar mistakes</u>
```
<u>Yeet</u> the <u>sus</u> drip while <u>vibing</u> with the <u>TikTok</u> <u>fam</u> on a cap-free boomerang.
## External link
```html