HTML (Hyper Text Markup Language)
1. What is HTML?
What is Markup Language?
2. HTML Basic Structure
<!DOCTYPE html>
Specifies that this document is an HTML document
<html>
HTML start tag that constitutes the overall framework of the document
<head>
Declares metadata of the document
<title>
Title of the document, shown in browser tab
<body>
Place where document content is contained
<div>
Means content division, causes line break
<span>
Content container without line break
<a>
Used when inserting links
<img>
Used when inserting images
<input>
Insert text, radio buttons, check buttons
<button>
Insert button3. HTML Basic Syntax
Inserting Images
ul, li Lists
input, textarea
4. Semantic Elements
Meaning
Why Use Them
Mainly Used Elements
5. Naming Each Area
id
class
Last updated