HTML meta

JSCCC
1 min readApr 11, 2021

HTML <meta> http-equiv Attribute

The http-equiv attribute provides an HTTP header for the information/value of the content attribute.

The http-equiv attribute can be used to simulate an HTTP response header.

X-UA-Compatible is a document mode meta tag that allows web authors to choose what version of Internet Explorer the page should be rendered as. It is used by Internet Explorer 8 to specify whether a page should be rendered as IE 7 (compatibility view) or IE 8 (standards view).

The href attribute specifies the URL of the page the link goes to.

If the href attribute is not present, the <a> tag will not be a hyperlink.

Tip: You can use href="#top" or href="#" to link to the top of the current page!

URLThe URL of the link.

Possible values:

  • An absolute URL — points to another web site (like href=”http://www.example.com/default.htm")
  • A relative URL — points to a file within a web site (like href=”default.htm”)
  • Link to an element with a specified id within the page (like href=”#section2")
  • Other protocols (like https://, ftp://, mailto:, file:, etc..)
  • A script (like href=”javascript:alert(‘Hello’);”)

Form action/onSubmit

onChange react
https://upmostly.com/tutorials/react-onchange-events-with-examples

--

--