Monday 7 September 2015

Basics of HTML



What is HTML

HTML is defined as Hypertest Markup Language which is applied to generate computerized file called web pages which are visible on the global web. Every pages have an important relation to another pages known as hyperlinks. And it’s not a complicated compute language.

HTML Document:

Each web pages we are looking on the online network is composed through HTML code, which is clear-text document with Html document enlargement rather than .text containing lots of HTML tags. The web pages consist of lots of Html documents which links to one another. One may alter these files with the html editors. HTML Document begins with the type declaration <!DOCTYPEhtml>. The displaying sector of HTML Document is within <body> and </body>

HTML TAGS:

Tags split general test against HTML code. Tags grant images, tables and stuff simply by revealing the portal as to execute on page. Various tags aims various actions. These tags are unseen keywords inside the web pages which describe in what way the portal have to configure and view the content.

Many tags will have two segments an beginning tag and ending tag <html> is the beginning tag and </html> is the ending tag. See the ending tag and the beginning tag are like similar but the ending tag has a extra forward slash (/ ).

Few tags which are different to that order their the ending tag is not at all needed <img> tag is the example for these tags. <img src=”image.png”>

HTML Heading:

HTML are explain by <h1>to <h6> for example:<h1> is the first beginning heading and </h1> is the ending heading.

HTML paragraph:

HTML paragraph are explain by <p> for example <p> is the first beginning paragraph and </p> is the ending paragraph.

Basic HTML Document

<!DOCTYPEhtml>

<html>

<body>

<h1> Your First heading</h1>

<p> Your First paragraph.</p>

<h2> Your second heading<//h2>

<p> Your Second paragraph.</p>

</body>

</html>

The above HTML code Results like the below


My First Heading


My first paragraph.

My second Heading


My second paragraph.

HTML Links:

HTML links explain by <a> for example

<a href=”http://www.merustudios.com“> Example link</a>

No comments:

Post a Comment