T E C h O C E A N H U B

Introduction to HTML

HTML stands for Hyper Text Markup Language used by the browser to manipulate images, contents, texts and other content, in order to display it in the required format. Also, it describes the structure of a Web Page.

:: Below are the important basic HTML Tag ::

TagDescription
<!DOCTYPE>It defines the document type
<html>It defines an HTML document
<head>Head Contains metadata/information for the document
<title>Defines a title for the document, also know as page title
<body>Defines the html document’s body
<h1> to <h6>Defines HTML headings element for different font size
<p>Defines a paragraph element, use for larger content
<br>Inserts a single line break in the document
<hr>User for a horizontal line
<!–…–>Use for commenting code

Example: HTML 5 Basic syntax:

<!DOCTYPE html>
<html>
    <head>
        <title>My First page</title>
    </head>
<body>
    <h1>Heading element</h1>
    <h2>Sub Heading element</h2>
    <hr color='red'>
    <p>My first paragraph 1. 
     Lorem ipsum dolor sit amet consectetur adipisicing elit. Eius facilis velsint nobis cupiditate deleniti maiores hic unde adipisci. Tempora nostrum reiciendis distinctio consequatur ab sed
    </p>

    </br>
    <!-- Break Element  and comment tag-->
    <p> My second paragraph 2 </p>
</body>
</html>

Output:

Feel free to read and comment below.

Below is my created application and is useful for people having Google Opinion Rewards.

https://play.google.com/store/apps/details?id=com.manasvi.sawant.rewardtocash

If you wanted to create a website, please visit my fiverr gig link below.

https://www.fiverr.com/share/EdZ9L7

Copyright ©TechOceanhub All Rights Reserved.