HTML Tutorial PDF - Web Design Basics
Document Details

Uploaded by CatchyBowenite8605
Tags
Summary
This document introduces the fundamentals of HTML, the core language of the web. It explains HTML elements, attributes, and document structure. The tutorial is designed for learners and covers key concepts like headings, paragraphs, and links to build the foundation of web development.
Full Transcript
HTML Hyper Text Markup Language What is HTML? HTML stands for Hyper Text Markup Language HTML is the standard markup language for creating Web pages HTML describes the structure of a Web page HTML consists of a series of elements HTML elements tell the browser how to display the content...
HTML Hyper Text Markup Language What is HTML? HTML stands for Hyper Text Markup Language HTML is the standard markup language for creating Web pages HTML describes the structure of a Web page HTML consists of a series of elements HTML elements tell the browser how to display the content HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc. A Simple HTML Document What is an HTML Element? An HTML element is defined by a start tag, some content, and an end tag: Content goes here... The HTML element is everything from the start tag to the end tag: My First Heading My first paragraph. What is an HTML Element? What is an HTML Element? An HTML element is defined by a start tag, some content, and an end tag: Content goes here... The HTML element is everything from the start tag to the end tag: My First Heading My first paragraph. What is an HTML Element? 1. Absolute URL - Links to an external image that is hosted on another website. Example: src="https://stdominiccollege.edu.ph/images/one-asia- heritage/asean/brunei-1.jpg". 2. Relative URL - Links to an image that is hosted within the website. Here, the URL does not include the domain name. Example: src="img_girl.jpg". HTML Display THANK YOU!