HTML SVG
SVG (Scalable Vector Graphics) SVG defines vector-based graphics in XML, which can be directly embedded in HTML pages. SVG graphics are scalable, and do not lose any quality if they are zoomed or resized: SVG is supported by all major…
SVG (Scalable Vector Graphics) SVG defines vector-based graphics in XML, which can be directly embedded in HTML pages. SVG graphics are scalable, and do not lose any quality if they are zoomed or resized: SVG is supported by all major…
What is HTML Canvas? The HTML <canvas> element 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…
An HTML form is used to collect user input. The user input is most often sent to a server for processing. See the Pen HTML Forms by Iampsp.com (@iampsp) on CodePen.
XHTML is a stricter, more XML-based version of HTML. What is XHTML? XHTML stands for EXtensible HyperText Markup Language XHTML is a stricter, more XML-based version of HTML XHTML is HTML defined as an XML application XHTML is supported by…
A URL is another word for a web address. A URL can be composed of words (e.g. iampsp.com), or an Internet Protocol (IP) address (e.g. 192.68.20.50). Most people enter the name when surfing, because names are easier to remember than…
To display an HTML page correctly, a web browser must know which character set to use. The HTML charset Attribute The character set is specified in the <meta> tag: <meta charset=”UTF-8″>
Emojis are characters from the UTF-8 character set: 😄 😍 💗 Original Smileys Char Dec Hex Name 😀 128512 1F600 GRINNING FACE Example <p style=”font-size:100px”>😜</p> <p>I will display 😜</p> <p>I will display 😜</p>
Symbols or letters that are not present on your keyboard can be added to HTML using entities. HTML Symbol Entities HTML entities were described in the previous chapter. Many mathematical, technical, and currency symbols, are not present on a normal…
Reserved characters in HTML must be replaced with entities: < (less than) = < > (greater than) = > HTML Character Entities Some characters are reserved in HTML. If you use the less than (<) or greater than (>) signs…