Please enable JavaScript.
Coggle requires JavaScript to display documents.
HTML - Coggle Diagram
HTML
Basic
-
Types of Tags
h1,h2,h3,h4,h5,h6 - heading
-
-
-
-
ol, ul, and li - present a list
-
-
-
-
select and option — Sometimes you want to limit a user to a certain group of options to select from.
-
table, tr, and td – Like making a table in Word or Excel
-
-
-
IDs
When you designate something with an ID, you're affirming that this is the only one of those on your website
Meta HTML
<!DOCTYPE html><html lang="en">
<head>
<title>My amazing HTML Document</title>
</head>
<body>
<h1>Check this out</h1>
<!-- Your amazing HTML here -->
</body>
</html>
-
<html lang="en"></html>
You'll wrap everything in here and You also should give it a language attribute to let the browser know what language your document is
-
<body></body>
All of our "visual" HTML will go in here. All your divs, spans, imgs, etc.
<script></script>, <style></style>, and <link />
-
-