Lesson 3 Flashcards
This is the standard markup language used to create web pages, defining the structure of information through various tags and attributes.
HTML
This organization establishes standards for web technologies, including HTML and CSS, with the most current standard being HTML 4.01.
World Wide Web Consortium (W3C)
This basic tool is used for writing HTML documents, such as Notepad.
Plain Text Editor
This tool is used for testing and viewing web pages created with HTML.
Web Browser
These tags are enclosed in angle brackets and define the HTML document.
<html> ... </html>
This tag is used to center elements on the page.
<CENTER>
</CENTER>
This tag contains metadata, including the title displayed in the browser’s title bar.
<head> ... </head>
These tags denote the importance of topics on the page, ranging from <H1> to <H6>, with <H1> being the largest.
Header Tags (<H1> to <H6>)
This tag defines paragraphs and separates text with a line break.
<p>
</p>
These physical tags format text to be bold, italic, and add line breaks or horizontal rules.
<b>, <i>, <br></br>, <HR></i></b>
This type of list uses bullets to present items and is created with the tags <UL> and <LI>.
Unordered List
This type of list uses numbers to present items in a specific order, created with the tags <OL> and <LI>.
Ordered List
This type of list is used for terms and definitions, created with the tags <DL>, <DT>, and <DD>.
Definition List