> For the complete documentation index, see [llms.txt](https://web-dev-guide.wishtack.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://web-dev-guide.wishtack.io/html/content-formatting.md).

# Content Formatting

Some tags and attributes can be used for content formatting :

```markup
<!-- Carriage return. -->
<br>

<!-- Bold. -->
<b>Bold text.</b>

<!-- Italic. -->
<i>Italic text.</i>

<!-- Element's height & width. -->
<div height="600px" width="800px"></div>
```

{% hint style="warning" %}
For an improved Software Design and in order to Separate Concerns, this usage should be avoided in favor of **dedicated CSS files**.
{% endhint %}
