You're online now.

Hurray! you are online now.

Html Introduction

HTML (Hypertext Markup Language) is a markup language used for creating web pages and other online documents. It is the standard markup language for creating web pages and is an essential component of web development.
HTML uses a set of tags and attributes to describe the structure and content of a web pages. These markers are used to format text, images, videos, links, and other media on a web pages. HTML code can be created using a simple text editor, and the performing web pages can be viewed in a web browser. 
Some of the introductory elements of HTML include the document type declaration, head, and body tags. The document type declaration specifies the version of HTML being used, while scripts. The body label contains the main content of the web page.
HTML also supports the use of Cascading Style Sheet(CSS), which allow for more advanced formatting and styling of web pages. also, JavaScript can be used to add interactivity and dynamic functionality to a web page.
Overall, HTML is a foundational technology for web development and is an essential skill for anyone looking to produce web content.

<!-- Starter Template of HTML -->
    <!DOCTYPE html>
    <html>
        <head>
            <title>Title Here of page</title>
        </head>
        <body>
            <h1>This is my first Heading</h1>
            <p>This is my first paragraph.</p>
        </body>
    </html>

HTML was founded by Tim Berners-Lee in early of 1990s. Berners-Lee is widely considered to be the inventor of the World Wide Web.
HTML is the client-side scripting language i.e. used to design a static webpages.

Hypertext Markup Language (HTML) every single word has its own meaning.
Hyper: refers to the fact that HTML allows for links between different pages and content on the web, creating a "web" of interconnected information.
Text: refers to the fact than HTML is used to format and structure textual content on web pages, including headings, paragraphs, and lists.
Markup: refers to the use of tags and attributes to indicate how content should be formatted and displayed on a web page.
Language: refers to the fact that HTML is a formal system of rules and syntax for creating web pages, similar to a programming language.

🖤 0
Buy me coffee ☕

Comments

Oops!

No comments here...