CSS

Chapter 31: SVG

SVG stands for Scalable Vector Graphics. SVG is used to define graphics for the Web The HTML <svg> element is a container for SVG graphics. SVG has several methods for…

July 15, 2021 Read More
CSS

Chapter 30: Content Languages

Base Document Language It’s a good practice to declare the primary language of the document in the html element: If no other lang attribute is specified in the document, it…

July 14, 2021 Read More
CSS

Chapter 29: IFrames

Attribute Details name Sets the element’s name, to be used with an a tag to change the iframe’s src. width Sets the element’s width in pixels. height Sets the element’s…

July 14, 2021 Read More
CSS

Chapter 28: Embed

Parameters Details src Address of the resource type Type of embedded resource width Horizontal dimension height Vertical dimension

July 14, 2021 Read More
CSS

Chapter 27: Selection Menu Controls

Select Menu The <select> element generates a drop-down menu from which the user can choose an option. Changing the Size You can change the size of the selection menu with…

July 13, 2021 Read More
CSS

Chapter 26: Progress Element

Parameter Value max How much work the task requires in total value How much of the work has been accomplished already position This attribute returns the current position of the…

July 13, 2021 Read More
CSS

Chapter 25: Media Elements

Attribute Details width Sets the element’s width in pixels. height Sets the element’s height in pixels. <source> Defines resources of the audio or video files track Defines the text track…

July 13, 2021 Read More
CSS

Chapter 24: Void Elements

Not all HTML tags are of the same structure. While most elements require an opening tag, a closing tag, andcontents, some elements – known as void elements – only require…

July 13, 2021 Read More
CSS

Chapter 23: Output Element

Attribute Description Global Attributes that are available to any HTML5 element. For comprehensive documentation of theseattributes see: MDN Global attributes name A string representing the name of an output. As…

July 12, 2021 Read More
CSS

Chapter 22: Label Element

Attributes Description for Reference to the target ID Element. I.e: for=”surname” form HTML5, [Obsolete] Reference to the form containing the Target Element. Label elements are expected within a <form> Element.…

July 12, 2021 Read More
CSS

Chapter 21: Navigation Bars

Basic Navigation Bar Navigation bars are essentially a list of links, so the ul and li elements are used to encase navigation links. HTML5 Navigation Bar To make a navigation…

July 12, 2021 Read More