Welcome to HTML section...
First off all What is HTML? the answer is simple.. go through below..
First off all What is HTML? the answer is simple.. go through below..
What is HTML?
HTML is a markup language for describing web documents (web pages).
- HTML stands for Hyper Text Markup Language
- A markup language is a set of markup tags
- HTML documents are described by HTML tags
- Each HTML tag describes different document content.
Here's a wonderful Hello World! Example:
<!DOCTYPE html>
<html>
<head>
<title>Hello world app</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
Output:
Here.. Html is started by specifying it's type of document as html.Head section is completely used for linking of Stylesheets, Providing titles for the pages, linking the Javascript files, defining the character set of the text used in the pages.. etc..
Body tag is used to represent the content of the page. There are 6 heading tags used in html, they are in the descending order. <h1><h2><h3>,h4><h5><h6>..
Remember in Html the opening tag will always be like this <> and closing tag will always be like this </>
To Be Continued...
<!DOCTYPE html>
<html>
<head>
<title>Hello world app</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
Output:
Hello World!
Here.. Html is started by specifying it's type of document as html.Head section is completely used for linking of Stylesheets, Providing titles for the pages, linking the Javascript files, defining the character set of the text used in the pages.. etc..
Body tag is used to represent the content of the page. There are 6 heading tags used in html, they are in the descending order. <h1><h2><h3>,h4><h5><h6>..
Remember in Html the opening tag will always be like this <> and closing tag will always be like this </>
To Be Continued...
No comments:
Post a Comment