Here are some html tags that I have learned so far;
tags
Functions
< html><html>
It tells the browser that the file is "Html file"
<head><head
element can include a title for the document, scripts, styles, meta information, and more
<body> </body>
It is the content that our browser displays
<h1> </h1>
It makes a header to our text.
<strong> </strong>
It makes our text bold.
<em> </em>
It makes italic to our text.
<ul> </ul>
We use it when we make unordered-list
<ol> </ol>
We use it to make ordered-list.
<p> </p>
We use it to make a new paragraph.
<a> </a>
defines a hyperlink, which is used to link from one page to another
Home