- HTML Table
A table is a structured set of data made up of rows and columns. A table allows you to quickly and easily look up values that indicate some kind of connection between different types of data, for example a person and their age. The <table> tag defines an HTML table. Each table row is defined with…
- HTML Graphics
Canvas <canvas> is used to draw graphics, on the fly, via JavaScript. The <canvas> element is only a container for graphics. You must use JavaScript to actually draw the graphics. Canvas has several methods for drawing paths, boxes, circles, text, and adding images. <div class=”row”> <div…
- HTML Media
Multimedia on the web is sound, music, videos, movies, and animations. Audio <!– controls attribute specifies that audio controls should be displayed (such as a play/pause button etc) –> <!– loop attribute specifies that the audio will start over again, every time it is finished. –> <!– autoplay…
- HTML Lists
Ordered List <div class=”row”> <div class=”col-3″> <h3>Ordered List</h3> </div> <div class=”col-9″> <ol> <li>Apple</li> <li>Mango</li> <li>Banana</li> </ol> </div> </div> Unordered List <div class=”row”> <div class=”col-3″> <h3>Unordered List</h3> </div> <div class=”col-9″> <ul> <li>Apple</li>…
- HTML Elements
An HTML element is defined by a start tag, some content, and an end tag. An HTML element is defined by a start tag, some content, and an end tag: Note that some HTML elements have no content (like the <br> element). These elements are called empty elements. Empty elements do not have an end […]