- Points
- 724
What is HTML and how do I use it?
HTML stands for Hypertext Markup language. It is used as a bare bone structure for a web page and communicates with your browser on what content to display. This includes images, backgrounds, text decorations, and more.
The < arrows > are the syntax of HTML. These are important because it is a necessity for HTML to work properly.
Handy codes you must know to get started with:
Img src stands for image source. It allows you to display an image of your choosing. Copypaste this code into your coding editor and preview it once you choose the link to your image.
These ones are self-explanatory.
You've now learned the ultimate basics! Go out there and flex your newly found skills. Just don't trip.
HTML stands for Hypertext Markup language. It is used as a bare bone structure for a web page and communicates with your browser on what content to display. This includes images, backgrounds, text decorations, and more.
The < arrows > are the syntax of HTML. These are important because it is a necessity for HTML to work properly.
Handy codes you must know to get started with:
Code:
<img src="imageurl.png">
Code:
<b>Bold text</b>
Code:
<u>Underline text</u>
Code:
<i>Italic text</i>
You've now learned the ultimate basics! Go out there and flex your newly found skills. Just don't trip.