Latest posts

10/recent/ticker-posts

Basics of HTML | Message printing in HTML | Headings in HTML | Paragraph tag in HTML

Webpage Development & Designing Using HTML

Nowadays most of the students are moving towards the IT Industry, which leads them to get some knowledge about their courses. Those courses mostly include Programming Languages that are used for developing websites and creating applications.

Now we are going to learn about our New Programming Language, that is Hypertext Markup Language (HTML). So let's see...




Introduction To HTML


Hypertext Markup Language (HTML) is the most commonly used Markup Language for creating web pages which was released in 1993 i.e. about 30 years ago.

When a Web browser reads a document that has HTML markup in it, it determines how to render it onscreen by considering the HTML elements embedded within the document.So, an HTML document is simply a text file that contains information you want to publish and the appropriate markup instructions indicating how the browser should structure or present the document.

The most important thing in HTML Language is the use of HTML Tags. All the tags in HTML Language are written in between opening and closing Angular Brackets (<>), such as <body>, <h1>, <strong>, and so on. Those tags are also known as Markup Elements.

Markup elements are made up of a start tag, such as <html>, and typically, though not always, an end tag, which is indicated by a slash within the tag, such as </html>.

The tag pair should fully enclose any content to be affected by the element, including text and other HTML markup.



Displaying Text on Webpage


 
The Body tag is able to display or print any kind of message on the Output screen of the webpage.
In HTML, we can directly display or print any Message on the Webpage viheading tags of the HTML.
A graphical overview of the <h1> Tag of the HTML that shown so far is presented below : 

So, now we are going to see an example of Displaying Message on Output Screen of Webpage.

Example : 

<!DOCTYPE html>
<html>
    <head>
        <title>Displaying Message</title>
    </head>
    <body>
        <!-- Printing message as Headings : -->
        <h1>This is a Heading - H1</h1>
        <h2>This is a Heading - H2</h2>
        <h3>This is a Heading - H3</h3>
        <h4>This is a Heading - H4</h4>
        <h5>This is a Heading - H5</h5>
        <h6>This is a Heading - H6</h6>
        <!-- Printing message as Paragraph : -->
        <p>This is a Paragraph Text</p>
    </body>
</html>


Output : 





So, let's wrap up this session. See you guys Next Time, stay tuned for further updates of HTML Programming Languages...!!!

I hope, our website will definitely help you to improve your Programming Skills and Knowledge.

Thanks for Visiting...!!!




Also Visit


Post a Comment

0 Comments