1.1   Installation 

               1. Download sublime text3 from sublimetext.com.

           2. Install sublime text

           3. Download Bootstrap & Jquery from getbootstrap.com & Jquery.com


1.2   Open sublime text3

             1. Click on File-> New File-> save-> my website.html-> save

          2. Type html and press Tab button


                    <!DOCTYPE html>

<html>

<head>

<title></title>

</head>

<body>

</body>

</html>


               3. Type script and press Tab button  & type link and press Tab button

                    <!DOCTYPE html>

<html>

<head>

<title></title>

 

<script type="text/javascript"></script>

<link rel="stylesheet" type="text/css" href="">

</head>

<body>

 

</body>

</html>

 

1.3  Simple HTML Program

            <!DOCTYPE html>

                <html>
                    <head>
                        <title>Page Title</title>

                        <script type="text/javascript" src="jquery-3.2.1.min.js"></script>

                        <script type="text/javascript" src="js\bootstrap.min.js"></script>

                        <link rel="stylesheet" type="text/css" href="css\bootstrap.min.css">
                    </head>
                    <body>

                        <h1>My First Heading</h1>
                        <p>My first paragraph.</p>

                    </body>
                </html>


Where,

 <!DOCTYPE html> declaration defines this document to be HTML 

 <html> is the root element of an HTML page

 <head> element contains meta information about the document

 <title> specifies a title for the document

 <body> contains the visible page content

 <h1> element defines a large heading

 <p> element defines a paragraph


Result-