You are on page 1of 1

HTML SYMBOLS AND THEIR MEANINGS

<h1>…<h6>Heading</h6> Headings
<p>Text</p> Paragraph Text
<button>START</button> Button
<img src=”https://image_link.img” > Image
<!--comment--> Comment
<br>

Formatting Text Tags (Used inside a paragraph or Heading)


<b>text</b> Bold Text
<i>text</i> Italic Text
<u>text</u> Underline Text
Semantic Formatting Text Tags
<em>text</em> More Like Italic Text
<strong>text</strong> More Like Bold Text

Links
<a href src=”https://Link_add.com” > Text<a/> Adding a Link

Lists
<li>..<li>item1</li> Adding a List of items
<ol>Container</ol> A container for the list to make them ordered
<ul>Container</ul> A container for the list to make them unordered
Do You Know? (DYK)
HTML – Hypertext Markup Language
Hypertext in HTML means Hyperlinks in web pages while Markup refers to the symbols like </>

You might also like