HTML Introduction
HTML Basic to advance
What is Html or HTML5???
HTML stands for (HyperText Markup Language). It is used to make web pages and websites.
HTML is the set of markup symbols or code inserted in a file for display on a World Wide Web browser page. The markup tells the web browser how to display a web page's words and images for user.
There would be a question in your mind that where I can write the code or symbols??
You can write HTML elements, codes or symbols in simple text editor like "notepad" which is already in the computer. Or you can also download a text editor from Internet like Notepad++, DreamWeaver etc.
In this Example I'm trying to show you a little structure of a HTML web page.
<html>
<head>
<title>Azeem</title>
</head>
<body>
<!-- Defining Headings "<h1></h1>" tags-->
<h1>I am a student of HTML</h1>
<h2>I am a student of HTML</h2>
<h3>I am a student of HTML</h3>
<h4>I am a student of HTML</h4>
<h5>I am a student of HTML</h5>
<h6>I am a student of HTML</h6>
<!-- Defining Paragraph "<p></p>" tags-->
<p>Today is my first class. Today is my first class. Today is my first class. <br>
Today is my first class. Today is my first class. Today is my first class. Today is my first class. <br>
Today is my first class. Today is my first class. Today is my first class. Today is my first class. <br>
Today is my first class.
</p>
<!-- How to add an image in a HTML page-->
<img src="image.jpg" width="104" height="142">
</body>
</html>
Comments
Post a Comment