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
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.
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
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...!!!
Thanks for Visiting...!!!
0 Comments
Please do not add Any Spam link in Comments !