Introduction To Hyper Text Markup Language(HTML) 2020
HTML Introduction: Hyper Text Markup Language(HTML) is a language to develop Static Web Pages and Dynamic Web Page When Include with server side programming.
- HTML is characterize about the structure of static web pages and it consist of various elements to display the content on the browser.
- Hyper Text Markup Language(HTML) elements are define with Tags(< >). And the Tags will not display on the browser, it shows only functionality of HTML.
Example of HTML
<html>
<head>
<title>web Page Title</title>
</head>
<body>
<h1>My Heading</h1>
</body>
</html>
Here,
- <HTML> Tag is a root element for all html page and it ends with </HHTML>
- <head> Tag will contain the Meta Information about the Page and it ends with </head>
- <title> Tag will have a title of your web page and it ends with </title>
- <body> Tag has contain displayed page content on the browser and it ends with </body>
- <h1> is define a heading it's upto <h6> and ends with </h1>
HTML file have to save with .html or .htm. For Example filename.html
Example.html
<!DOCTYPE html>
<html>
<head>
<title>My Title</title>
</head>
<body>
<h1>My Heading</h1>
<p>my paragraph</p>
</body>
</html>
0 comments 10:
Post a Comment