Skip to main content

Posts

HTML Step to Step Guide

                                   HTML Introduction                 HTML Example                                        <!DOCTYPE html>                                                        <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> Example Explained The DOCTYPE declaration defines the document type The text between <html> and </html> describes the web page The text between <body> and </body> is the visible page content The text between <h1> ...