Tag html table

HTML Uniform Resource Locators

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…

HTML Encoding

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 in HTML

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”>&#128540;</p> <p>I will display &#128540;</p> <p>I will display &#x1F61C;</p>

HTML Symbols

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…

HTML Entities

Reserved characters in HTML must be replaced with entities: < (less than) = &lt; > (greater than) = &gt; HTML Character Entities Some characters are reserved in HTML. If you use the less than (<) or greater than (>) signs…

HTML Responsive Design

Responsive web design is about creating web pages that look good on all devices! A responsive web design will automatically adjust for different screen sizes and viewports. What is Responsive Web Design? Responsive Web Design is about using HTML and…

HTML – Head Element

The HTML <head> element is a container for the following elements: <title>, <style>, <meta>, <link>, <script>, and <base>. The HTML <head> Element The <head> element is a container for metadata (data about data) and is placed between the <html> tag…