Please enable JavaScript.
Coggle requires JavaScript to display documents.
HTML - Coggle Diagram
HTML
HTML Tags
main
header
footer
nav
video
article
section
Heading
h1
h2
h3
h4
List
Ordered List
Unordered List
li
Form :check: <form>...</form>
action="Form URL where you want to submit the data"
input
text
placeholder = "This is the sentence to help..."
type = "text"
add "required" at the end of the element to disallow the person to submit the form without adding to the field.
radio
type="radio"
name="group name which should be same as the other"
id="same value as in the "for" attribute for the label"
Button
Submit
type="sumbit"
Paragraph
p
Comments
<!-- -->
Image
img
src
path to image
alt
used for the screen readers to improve accessibility
it's also displayed if the image fails to load
self closing
Link
a
href
href="...." :arrow_right: hyperlink to the website
href="#....." :arrow_right: for internal link
with "id"
href="#" creates a dead link
target="_blank"
Opens to New Window