Page 1

This is the first page. In this page, I introduce you to some basic HTML tags.

Basic html

Here are some super basic HTML tags that may be helpful to format your page.

Heading

Subheading

Subsubheading

As you might have already noticed, using h1, h2, h3, ... will make a heading. This is good for title, category, etc.

Paragraph

If you want to make a paragraph, surround a block of text with p tag. Otherwise even if you add new lines in the code, paragraphs will be connected to each other.

This is the second paragraph :)

Highlight

A simple way to highlight text is using b for bold. Another way to highlight text is using i for italic.

Image

description of image

Image can be added with img tag. I recommend you adding "alt" text for the screen reader.

Link

Use a tag (anchor) to make a link. You can link within your website (for example, to page 2 or to external website like Sonaveeb).

List

Making a list with ul tag is a bit wordy but it is defenitely helpful for, for example, a shopping list. (Bonus: use del tag to make a strikethrough)

  1. üks
  2. kaks
  3. kolm
  4. neli

ol tag will make the list ordered/numbered. This may be useful for a cooking recipe.