Category Archives: HTML

Mostly Used HTML Tags

The some of the important HTML tags are

<!DOCTYPE>       It describes the type of the document.

<a>                           Anchor tag   –   It defines Hyperlink  –

Ex:-   <a href=”https://phpfreelancedeveloperguru.wordpress.com/”>Remote Developer</a>

<bold>                   Defines bold

Ex:   <b> Sean</b>

<strong>               Defines the importance of text

I am Sean Wolf, a <strong>Remote PHP Developer</strong>. I have 12 years of strong experience in  LAMP  (Linux, Apache, MySQL and PHP) .

<br>                        Define single line break

I am Sean Wolf, a Remote PHP Developer. <br>I have 12 years of strong experience in  LAMP  (Linux, Apache, MySQL and PHP) .

<h1> – <h6>       Header tags

What is HTML?

The full form of the HTML is Hyper Text Markup Language. It is a markup language, using for creating webpages and other information that can be displayed in a browser.

HTML INTRODUCTION
<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>