Aiden Explains!

HTML Tutorial

So, you wanna learn HTML? So this is the place!

How HTML Is Structured

Html is structured in tags like <tag> </tag> . They have a opening tag <tag>, and a closing tag! </tag>

Basic Tags

The basic tags are

  1. Images
  2. Links
  3. Headers
  4. Paragraphs
  5. Italic
  6. Bold 7.Line Breaks
  7. Lists

Images

The Image tag is <img src="name.png"> Replace name.png with the image name. No closing tag!

The Link tag is <a href="https://example.com> example</a> You have to add something in between the opening tags and the closing tags so that it can be seen. And if you want it to go to your html pages, you can put <a href="link.html>.

Headers

The headers are: 1.<h1>: This header is the largest header and the most important. 2.<h2>: This header is the 2nd largest header. 3.<h3>: This header is almost small 4.<h4>:This header is small 5.<h5>: This header is 2nd smallest header. 6.<h6>: This header is the smallest header and the least important.

Paragraphs

The paragraph tag is <p>.

Italic

The italic tag: <i> is a tag that's making text italic.

Bold

The bold tag: <B> is for making text bold.

Line Break

The Line Break tag is to separate stuff from one another. The tag is: <br>

Lists

Well. The list tags are <ul> and <li> for dotted lists, <ol> and <li> are for numbered lists. Heres a dotted list example code: <ul> <li> example </li> </ul> For numbered list example code: <ol> <li> example! <li> <ol>

The end!

Congratulations! You graduated from HTML School! Congrats! I wish you luck in making your Website! By Aiden:)