INTRODUCTION TO HTML: the foundation of web
HTML: The Foundation of the Web ____________________________________ What is HTML? HTML stands for HyperText Markup Language. It's the standard language used to create web pages. Think of it as the blueprint for constructing a building. It defines the structure and content of a webpage, but not its appearance. How Does it Work? HTML uses special elements called tags to define the structure and content of a page. These tags are enclosed in angle brackets (<>). For example: * <p>: Defines a paragraph. * <h1> to <h6>: Define headings of different levels. * <img>: Inserts an image. * <a>: Creates a hyperlink. * <ul> and <ol>: Create unordered and ordered lists respectively. Basic Structure of an HTML Document Every HTML document has a basic structure: <!DOCTYPE html> <html> <head> <title>My Web Page</title> </head> <body> </body> </ht...