0
Any mnemonic for html?đ
I'm at end of HTML learning, but looking behind, I'm facing difficulty with memorizing some of the parts of HTML and HTML5. So I'm thinking is there any mnemonics present, to help memorizing the things. Friends, if you know any mnemonic related to HTML5, Then please post it :) Thanksâșïžđ
3 Answers
+ 4
It's not as difficult to remember as you might think. Eventually, the HTML tags become as familiar as the alphabet.
Rather than focusing on memorizing elements, focus on content structure.
Start by mastering only a few common elements like:
h1-h6
div | span
strong | em
ul or ol | li
a | img
Then spend some time with all the form related elements.
form | button | input | textarea
select | option | datalist
progress | fieldset | label | legend
Expand to more sematic elements:
article | section | main | header | footer
address | aside | nav | blockquote
dt | dd | dl
table | th | tbody | tr | td | tfooter
abbr | pre | code | cite | sub | sup
Then media:
img | video | audio
These were just from top of mind and listed based on common mental groupings of how I would organize a hierarchical structure of content.
Eventually, you'll have these mastered where it takes no time to think of them.
In the meantime, keep references to pages like this handy:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element
+ 2
Syntax is usually based on function & feature. Constant use can help
+ 1
Thanks for suggestionsâșïž