HTML for beginner


Html stands for Hypertext Markup Language. User can create and structure, sections, paragraphs, headings, links, and blockquotes, photo gallery for web-Site and web application which and use on computer and as well as on any device.

Html isn't a programming language, that means it doesn’t have the ability to create dynamic functionality. We can create only static web-pages Using HTML, it helps create Formatted documents, like Microsoft word.

Html having it's own format to write program with the help of tag and attribute and it also called html elements. In Html Every Tag required to start tag and end tag, but some tag don't need to end tag. can write which we want in between those tags.

Method to write HTML Code

 starting tag <tag name> we write data here </tag name> closing  tag.

  For Example:

   <!DOCTYPE html> 

     <html>

     <head>

     <title>Document</title>

     <p>hello World</p>

     </head>

    <body>

   <h1>Welcome to Techinbox</h1>

   </body>

   </html>

this is the structure of HTML & It's also called as HTML Boilerplate.

                                                       Web Browser

 A website is a collection of web pages (documents that are accessed through the Internet).web site, is a central location of various web pages that are all related and can be accessed by visiting the home page using a browser(Chrome, Edge, Firefox, Safari).The definition of web page is a document, typically written in HTML, which Is almost always accessible via HTTP, a protocol that transfers information from the Web server to display in the user's Web browser.