• Learn HTML (Full Tutorial)

    Learn HTML (Full Tutorial)

    HTML Basics What is HTML? HTML = Hyper Text Markup Language Standard language for creating web pages Describes the structure of a web page using elements Elements label content (e.g., heading, paragraph, link) A Simple HTML Document <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> Explained: <!DOCTYPE…

    Continue Reading