HTMLCSS
Carousel
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 🦁</p>
<p>I will display 🦁</p>
Search the emoji on google with HTML to get the respective hexadecimal code.
Open link in new tab
<a href="https://github.com/lauradang" target="_blank">
Space in HTML
Last updated
Was this helpful?