# HTML cheatsheet

## **Creating break lines**

Sometimes you’ll encounter instances where lines are sticking together in one line even though it is correctly formatted in markdown.

For example, I could have the below text in markdown:

```
This is a line
with
break
```

But if you refer to the image below, the lines of texts are still on the same line.

![](https://13808351-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MAS5zzRwr-f8BQR34DD%2F-MQQpTg3V2iBFSCnIVKk%2F-MQQtx6ki61uIaGy4shW%2Fimage.png?alt=media\&token=79861a94-3cbc-4629-85a8-fc855a74cbd4)

To ensure your line breaks as intended, you'll have to add `<br>` html tag. You may do so in the following manners as shown below.

```
This is a line with <br>break
```

or

```
This is a line with
<br>break
```

Either way works fine. As you can see with the example below.

![](https://13808351-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MAS5zzRwr-f8BQR34DD%2F-MQQpTg3V2iBFSCnIVKk%2F-MQQvBkO9S1EU0zCdKhZ%2Fimage.png?alt=media\&token=71a9b5cb-0e59-4ac2-9cbc-65681e9325d5)
