An HTML element is set off from other text in a document by “tags”, which consist of the element name surrounded by “<
” and “>
“. The name of an element inside a tag is case insensitive. That is, it can be written in uppercase, lowercase, or a mixture. For example, the <title>
tag can be written as <Title>
, <TITLE>
, or in any other way.
HTML markup includes special “elements” such as <head>, <title>, <body>, <header>, <footer>, <article>, <section>, <p>, <div>, <span>, <img>, <aside>, <audio>, <canvas>, <list>, <details>, <embed>, <nav>, <output>, <progress>, <video>, <ul>, <ol>, <li> and many others.
3 thoughts on “HTML ELEMENTS”