Workspace
  • Study Book
  • WEB Network HTTP etc
    • Performance Optimization
    • Performance Optimization
    • HTTP/2 & SPDY
    • WebSocket
    • HTTP Header
    • Cross-Origin Resource Sharing
    • JSON, XML, other format
  • Javascript
    • Promise
    • make API call
    • Web API
    • Common JS
    • AJAX
    • Event DOM and delegation
    • ES6 new features
    • special function
    • function API
  • React
    • class component
    • Example
    • Lifting functions/ state up
    • Hot Loader
    • Testing
    • New Features
    • Hook
    • Simple code
    • Life Cycle
  • CSS
    • Horizontal & Vertical Align
    • GPU Animation
    • transform-function
    • LVHA Pseudo-classes
    • Selector
    • How To CSS
  • HTML
  • Redux
  • NodeJS
    • File System
  • express
    • express questions
    • express mongodb
  • Restful API
  • MongoDB
  • Compare
  • Test
    • Jest
  • Deploy development
  • coding question
  • DevOps
  • Webpack
  • GraphQL
Powered by GitBook
On this page
  • HTML
  • HTML5
  • HTML5 New Features
  • Attribute vs Property
  • HTTP response status codes
  • Successful responsesSection
  • maintain User login session
  • Cookie vs SessionStorage vs LocalStorage
  • Form Validation
  • HTML data-* attribute
  • HTML Semantic element
  • HTML5 Aside element
  • HTML Accessibility

Was this helpful?

HTML

HTML

HyperText Markup Language (HTML) is the standard markup language for creating web pages and web applications.

HTML5

Its goals were to improve the language with support for the latest multimedia and other new features; to keep the language both easily readable by humans and consistently understood by computers and devices such as web browsers, parsers, etc., without XHTML's rigidity; and to remain backward-compatible with older software.

HTML5 includes detailed processing models to encourage more interoperable implementations; it extends, improves and rationalizes the markup available for documents and introduces markup and application programming interfaces (APIs) for complex web applications

HTML5 New Features

  • Doctype

  • Placeholders

  • Local Storage

  • Semantic elements like <header>, <footer>, <article>, and <section>

  • Attributes of form elements like number, date, time, calendar, and range

  • Graphic elements like <svg> and <canvas>

  • Multimedia elements like <audio> and <video>

https://www.w3.org/TR/html5-diff/

HTML 5 New Inline Elements

The new inline elements define some basic concepts and keep them semantically marked up:

  • <mark> indicates content that is marked in some fashion.

  • <time> indicates content that is a time or date.

  • <meter> indicates content that is a fraction of a known range such as disk usage.

  • <progress> indicates the progress of a task towards completion.

Attribute vs Property

Attributes are defined on the HTML markup but properties are defined on the DOM.

HTTP response status codes

Information responses 100 ContinueThis interim response indicates that everything so far is OK and that the client should continue with the request or ignore it if it is already finished.101 Switching ProtocolThis code is sent in response to an Upgrade request header by the client, and indicates the protocol the server is switching to.

Successful responsesSection

200 OKThe request has succeeded. The meaning of a success varies depending on the HTTP method: GET: The resource has been fetched and is transmitted in the message body. HEAD: The entity headers are in the message body. PUT or POST: The resource describing the result of the action is transmitted in the message body.

201 CreatedThe request has succeeded and a new resource has been created as a result of it. This is typically the response sent after a POST request, or after some PUT requests

Redirection messagesSection

300 Multiple ChoiceThe request has more than one possible response. The user-agent or user should choose one of them. There is no standardized way of choosing one of the responses.

Client error responsesSection

400 Bad RequestThis response means that server could not understand the request due to invalid syntax.401 Unauthorized402 Payment Required 403 Forbidden404 Not FoundThe server can not find requested resource. In the browser, this means the URL is not recognized.

Server error responsesSection

500 Internal Server ErrorThe server has encountered a situation it doesn't know how to handle.

maintain User login session

Cookie vs SessionStorage vs LocalStorage

All the above-mentioned technologies are key-value storage mechanisms on the client side. They are only able to store values are strings.

Cookie

LocalStorage

SessionStorage

Initiator

client or server. Server can use Set-Cookie header

client

client

Expiry

manually set

forever

on tab close

Persistent across browser sessions

depends on whether expiration is set

yes

no

Sent to server with every HTTP request

cookies are automatically being sent via cookie header

no

no

Capacity

4kb

5mb

5mb

Accessibility

any window

any window

same tab

Form Validation

HTML5 introduced a new HTML validation concept called constraint validation.

HTML constraint validation is based on:

  • HTML Input Attributes - e.g. disabled, max, required

  • CSS Pseudo Selectors - e.g :disabled, :valid, :required

  • DOM Properties and Methods

HTML data-* attribute

The data attributes are used to store custom data private to the page or application. The data attributes give us the ability to embed custom data attributes on all HTML elements. The stored data can then be used in the page's JavaScript to create a more engaging user experience (without any AJAX calls or sever-side database queries).

The data attributes consist of two parts:

  • The attribute name should not contain any uppercase letters, and must be at least one character long after the prefix "data-"

  • The attribute value can be any string

HTML Semantic element

A semantic element clearly describes its meaning to both the browser and the developer. e.g. <form>, <table>, <article>

HTML5 Aside element

The aside element represents a portion of the document whose content is only indirectly related to the document's main content. Asides are frequently presented as sidebars or call-out boxes.

HTML Accessibility

  • Use more semantic HTML

  • Use correct headings

  • Alternative text

  • Declare the language and use clear language

  • Write good links and link titles

PreviousHow To CSSNextRedux

Last updated 2 years ago

Was this helpful?