HTML | Documentation of HTML By. Sunrise Computers
HYPERTEXT MARKUP LANGUAGE (HTML)
HTML | DOCUMENTATION
All HTML documents must start with a document type declaration: <!DOCTYPE html>.
The HTML document itself begins with <html> and ends with </html>.
The visible part of the HTML document is between <body> and </body>.
Example :-
<!DOCTYPE html>
<html>
<body>
<h1>MY FIRST PROGRAMMING LANGUAGE</h1>
<p>HYPERTEXT MARKUP LANGUAGE</p>
</body>
</html>
HTML | DOCUMENTATION | <!DOCTYPE> DECLARATION
Example :-
<!DOCTYPE html>...... </html>
HTML | DOCUMENTATION | HTML HEADINGS
Example :-
<h1>SUNRISE COMPUTER CLASSES</h1>
<h2>SUNRISE COMPUTER CLASSES</h2>
<h3>SUNRISE COMPUTER CLASSES</h3>
<h4>SUNRISE COMPUTER CLASSES</h4>
<h5>SUNRISE COMPUTER CLASSES</h5>
<h6>SUNRISE COMPUTER CLASSES</h6>
HTML | DOCUMENTATION | HTML PARAGRAPHS
Example :-
<p> SUNRISE COMPUTER CLASSES </p>
<p> WE PROVIDE QUALITY & UPDATE EDUCATION </p>
HTML | DOCUMENTATION | HTML LINKS
Example :-
<a href="https://www.sunrisecomputerclasses.com">This is Our Official link</a>
HTML | DOCUMENTATION | HTML IMAGES
Example :-
<img src="Logo.jpg" alt="sunrise.com" width="80" height="120">
Comments
Post a Comment