Intro to HTML by Rubén

Headers

You can put up to 6 different types of headers, h1 would be ↓

"THIS"

and h6 would look like ↓
"THIS"

Breaks

Instead of touching the "Enter" key like in a text editor, you can put this →
to break the line.

Italic and Bold

Text can also be in Italic and in Bold

Lists

    Ordered list:
  1. First Item
  2. Second Item

Images

↓From the Internet↓
messi otaku
↓From the images folder↓
two eyed mike wazowski

CSS

Text can be styled by:

Favicon

To add a Favicon, you have to put this command inside head
link rel="icon" href="(image link)"
put the command between < >

Tables

"thead" for the head or "tbody" for the body, "tr" for rows, and for columns "th" if it's a head, if not use "td"

Column 1 Column 2 Column 3
Row 1, C1 Row 1, C2 Row 1, C3
Row 2, C1 Row 2, C2 Row 2, C3

Comments

Use F12 or Ctrl+Shift+I to see this→

Font family

This text has a different font

Font size

This text has a different size

Font weight and style

This text is in bold and italic

Other properties

This text has a bigger spacing, is alligned and underlined

Go back