HTMLCSS

If you have multiple pictures, consider a carousel.

In-line Elements

If you want multiple HTML elements to be in the same line, do this:

CSS File:

.block {
  display: inline-block;
}

HTML File:

<p id="typing" class="block"></p>
<span id="cursor">|</span>

Font Awesome

Really easy to use, get the embed URL from the website and copy and paste the HTML codes. Sometimes the code doesn't work. Try fa, fas, or fab.

Emojis

<p>I will display &#129409;</p>
<p>I will display &#x1F981;</p>

Search the emoji on google with HTML to get the respective hexadecimal code.

<a href="https://github.com/lauradang" target="_blank">

Space in HTML

&nbsp;

Last updated