• We're looking for artists. Direct message Dr. Watson for more info!

Coding tutorial Basic HTML tutorial

Status
Not open for further replies.

Dr. Watson's iconDr. Watson

Resplendent
Administrator
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:
Code:
<img src="imageurl.png">
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.

Code:
<b>Bold text</b>
Code:
<u>Underline text</u>
Code:
<i>Italic text</i>
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.​
 
Status
Not open for further replies.
Back
Top