# Hashnode's editor now supports 8 new HTML tags - kbd, abbr, sub, sup, and more!

We value web accessibility and constantly try to make Hashnode more accessible to everyone. This week, we shipped support for **8 more HTML tags** to  [Hashnode Editor](https://hn.new) which will enable writers to write accessible articles.

Check out the list below for more details and examples:

## 1. kbd: 

```html
Please press <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>R</kbd> to re-render this page.
```  
**Output:**

Please press <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>R</kbd> to re-render this page.

## 2. abbr: 

```html
Did you know you can customize your Hashnode blog using Custom <abbr title="Cascading Style Sheets">CSS</abbr>
```

**Output:**

Did you know you can customize your Hashnode blog using Custom <abbr title="Cascading Style Sheets">CSS</abbr>

## 3. `dl`, `dt`, `dd`:

```html
<dl>
  <dt>Why Blogging</dt>
  <dd>
   Blogging itself is an amazing exercise to build your communication skill which is very essential when it comes to code. But this is just one reason, there are many more, to begin with.
  </dd>
</dl>

```

**Output**

<dl>
  <dt>Why Blogging</dt>
  <dd>
   Blogging itself is an amazing exercise to build your communication skill which is very essential when it comes to code. But this is just one reason, there are many more, to begin with.
  </dd>
</dl>

## 4. sub: 

```html
Almost every developer's favorite molecule is C<sub>8</sub>H<sub>10</sub>N<sub>4</sub>O<sub>2</sub>, also known as "caffeine."
```

**Output**

Almost every developer's favorite molecule is C<sub>8</sub>H<sub>10</sub>N<sub>4</sub>O<sub>2</sub>, also known as "caffeine."


## 5. sup: 

```html
The **Pythagorean theorem** is often expressed as the following equation: a<sup>2</sup> + b<sup>2</sup> = c<sup>2</sup>
```

**Output**

The **Pythagorean theorem** is often expressed as the following equation: a<sup>2</sup> + b<sup>2</sup> = c<sup>2</sup>

## 6. cite: 

```html
<cite>The Scream</cite> by Edward Munch. Painted in 1893.
```

**Output**

<cite>The Scream</cite> by Edward Munch. Painted in 1893.

## 7. details & summary:

```html
<details>
  <summary>Click here to learn more about Hashnode</summary>
  Hashnode is the easiest way to start a developer blog on your personal domain 🌏 for free and connect with the readers through our global dev community! 👩‍💻👨‍💻
</details>
```

**Output**

<details>
  <summary>Click here to learn more about Hashnode</summary>
  Hashnode is the easiest way to start a developer blog on your personal domain 🌏 for free and connect with the readers through our global dev community! 👩‍💻👨‍💻
</details>

## 8. s: 

```html
<s>string through</s>
```

**Output**

<s>string through</s>

---

You can directly write the HTML tags in  [Hashnode Editor](https://hn.new) and start using them. We hope this update lets you share your thoughts in a more accessible way. Let us know if you liked this update in the comment section. Cheers 🎉
