Skip to content

Instantly share code, notes, and snippets.

@daanyaalkapadia
Last active September 30, 2020 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daanyaalkapadia/1f31f7cec551c437b711aae87accafbc to your computer and use it in GitHub Desktop.
Save daanyaalkapadia/1f31f7cec551c437b711aae87accafbc to your computer and use it in GitHub Desktop.
meta tag example
<head>
<meta charset="UTF-8"> <!--Which character set your code is encoded in-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--To set the viewport to width of web page to device width and zoom initially to 1.0-->
<meta name="description" content="Free tutorials for HTML">
<!--If we search for anything in search engine the discription will apper below the title-->
<meta name="author" content="Daanyaal Kapadia"> <!--Define author of the page-->
<meta http-equiv="refresh" content="10"> <!--Refresh the page in every 10 seconds-->
<title>Document</title>
</head>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment