Last active
October 29, 2023 15:39
-
-
Save AndreVallestero/2aa84dd4c4849bbc5970a7f2f2f3dcdc to your computer and use it in GitHub Desktop.
SEO Tags and PWA tags for HTML
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang=en> | |
<head> | |
<meta http-equiv=content-type content="text/html;charset=UTF-8"> | |
<!--SEO tags --> | |
<title>My Page Title</title> | |
<meta name="description" content="Benchmarks for measuring the performance of GUI toolkits"> | |
<meta name="keywords" content="my, key, words, key words, keywords"> | |
<meta name="twitter:card" content="summary"> | |
<meta name="twitter:title" content="My Page Title"> | |
<meta name="twitter:description" content="My very long description"> | |
<meta name="twitter:image" content="https://mydomain.com/assets/logo.png"> | |
<meta property="og:title" content="My Page Title"> | |
<meta property="og:description" content="My very long description"> | |
<meta property="og:image" content="https://mydomain.com/assets/logo.png"> | |
<meta property="og:url" content="https://mydomain.com/"> | |
<meta property="og:type" content="website"> | |
<link rel="canonical" href="https://mydomain.com/"> | |
<link rel="icon" type="image/png" href="/assets/logo.png"> | |
<!--PWA tags --> | |
<meta name=mobile-web-app-capable content=yes> | |
<meta name=apple-mobile-web-app-capable content=yes> | |
<meta name=apple-mobile-web-app-status-bar-style content=black-translucent> | |
<meta name=viewport content="width=device-width,user-scalable=no,initial-scale=1"> | |
<meta name=theme-color content=#222> | |
<link rel=manifest href=/manifest.json> | |
</head> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment