what is html?how to learn html?how to create a web page?
HTML5
html is hyper text markup language which is used to create a webpage or for developing webpages all the webpages are created with HTML.
the syntax of html be like:
<html>
<title> title goes here </title>
<body>
<h1> heading 1 </h1>
</body>
</html>
the above is the example for a html code in html every function which opened that should be closed with slash mark before the word.
where html is used:
the html is used in web development and creating webpages the webpages are crreated with the help of multiple codes like
- HTML
- CSS
- PHP
CSS (casacanding styles)
php
etc
how the html is written:
- the html codes are written in between <> tags
- every element which is opened that should be closed
arttibutues used in html:
- The
<!DOCTYPE html>
declaration defines this document to be HTML5 - The
<html>
element is the root element of an HTML page - The
lang
attribute defines the language of the document - The
<meta>
element contains meta information about the document - The
charset
attribure defines the character set used in the document - The
<title>
element specifies a title for the document - The
<body>
element contains the visible page content - The
<h1>
element defines a large heading - The
<p>
element defines a paragraph
thankyou visting if you any doubts post it on comment box
Comments
Post a Comment