0% found this document useful (0 votes)
4 views36 pages

HTML Tags and Their Functions Explained

The document provides an overview of various HTML tags and their functions, including character encoding, hyperlinks, emphasized text, and formatting tags. It explains the purpose of tags such as <meta>, <a>, <em>, <strong>, and <pre>, among others. Additionally, it includes examples of using these tags in HTML code.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views36 pages

HTML Tags and Their Functions Explained

The document provides an overview of various HTML tags and their functions, including character encoding, hyperlinks, emphasized text, and formatting tags. It explains the purpose of tags such as <meta>, <a>, <em>, <strong>, and <pre>, among others. Additionally, it includes examples of using these tags in HTML code.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd

<meta charset="utf-8"> tells the browser to use

the utf-8 character encoding when translating


machine code into human-readable text and vice
versa to be displayed in the browser.
 <meta name=“author” content=“adina”>
 <mata name =“description” content =“fishmonger”
<a href=“”>link</a>

The <a> tag defines a hyperlink, which


is used to link from one page to
another.
<em></em
The <em> tag is used to define
emphasized text. The content inside
is typically displayed in italic.
<strong> </strong>
<b></b>

The <strong> tag is used to


define text with strong
importance. The content inside is
typically displayed in bold.
 <small></small>

 <mark></mark> OR <i></i>
 <sub></sub>
The <mark> tag defines text that should be marked or highlighted
 <sup></sup>

 <pre></pre>
 <strike></strike>

The <pre> tag defines preformatted text


<big> </big>
<abbr></abbr>
<addres></addres>
 <abbr title=“html”>html</abbr>
<a
href=“#bottomofpage”>Bottom>
</a>
<tfoot> </tfoot>
Link rel=“stylesheet”
href=“css/[Link]”>
<script src=“js/[Link]”></script>
<form action=“” method=“”>
<input type=“submit” value=“send”>
<input type=“reset” value=“очистить>”
<input type=“number” min=“1”
max=“5”>
 <fieldset></fieldset>
<class> The <span> tag is an inline
<div> container used to mark up a
part of a text, or a part of a
<span>
document.
<hr>(break)
<q>(quote)
<p><a href="#C4">Jump to Chapter
4</a></p>
<iframe src=“”>
<a href="https://
[Link]" target="_blank">
Visit W3Schools</a>
<p>The <abbr title="World Health
Organization">WHO</abbr> was founded
in 1948.</p>

You might also like