html Flashcards
<abbr></abbr>
abbreviation tag
e.g The <abbr>WHO</abbr> was founded in 1948.
hover the word WHO will show the full form
<address>
</address>
Defines contact information for the author/owner of a document
The text in the <address> element usually renders in italic, and browsers will always add a line break before and after the <address> element.
<area></area>
Defines an area inside an image map
<area></area>
elements are always nested inside a <map> tag.
e.g.
<map>
<area></area>
<area></area>
</map>
<article>
</article>
Defines an article
<aside>
</aside>
Defines content aside from the page content
Tip: The <aside> content is often placed as a sidebar in a document.
<audio>
</audio>
Defines embedded sound content
The <audio> tag contains one or more <source></source> tags with different audio sources. The browser will choose the first source it supports.</audio>
The text between the <audio> and </audio> tags will only be displayed in browsers that do not support the <audio> element.</audio>
3 supported audio formats in HTML: MP3, WAV, and OGG.
e.g
<audio>
<source></source>
<source></source>
Your browser does not support the audio tag.
</audio>
<!--...-->
comment tag
<!DOCTYPE>
All HTML documents must start with a <!DOCTYPE> declaration.
e.g <!DOCTYPE html>
<a></a>
- defines a hyperlink
- usually with href attribute, which indicates the link’s destination
<a>Visit W3Schools.com!</a>