sectioning¶
<h1>..<h6>are only meaningful for the title linebut are too poor to actually convey sectioning information
so in addition to these, there are also more “semantic” tags
<section><nav>
sectioning example¶
multimedia¶
find out more on these by yourselves
graphics and <svg>¶
SVG is a complete subsystem to deal with vector graphics
and much more on css-tricks
(very advanced, including animations)
svg example¶
graphics and <canvas>¶
the canvas tag is a more modern alternative to SVG for graphics
it is a programming-only interface, so accessible via JavaScript
don’t panic, we’ll cover that later on :)
here’s a simple example - just for a glimpse
form-oriented¶
for building forms :
<input>for entering data<button>for validating data<form>to group user-provided input
out of scope for this course though, as it involves a backend
miscell others¶
in a jumble :
<br>to insert a linebreak<hr>to insert a horizontal line<iframe>to insert another web pageand plenty more actually, but you can get started with these :)