this string has no description
0
emmet.html
193 lines 8.5 kB view raw
1<!doctype html> 2<html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta 6 name="viewport" 7 content="width=device-width, initial-scale=1.0, interactive-widget=resizes-content" 8 /> 9 <title>Document</title> 10 <!-- Short description of the document (limit to 150 characters) --> 11 <!-- This content *may* be used as a part of search engine results. --> 12 <meta name="description" content="A description of the page" /> 13 <!-- Control the behavior of search engine crawling and indexing --> 14 <meta name="robots" content="index,follow" /> 15 <!-- All Search Engines --> 16 <meta name="googlebot" content="index,follow" /> 17 <!-- Google Specific --> 18 <!-- Tells Google not to show the sitelinks search box --> 19 <meta name="google" content="nositelinkssearchbox" /> 20 21 <!-- Tells Google not to provide a translation for this document --> 22 <meta name="google" content="notranslate" /> 23 24 <!-- Verify website ownership --> 25 <meta name="google-site-verification" content="verification_token" /> 26 <!-- Google Search Console --> 27 <meta name="yandex-verification" content="verification_token" /> 28 <!-- Yandex Webmasters --> 29 <meta name="msvalidate.01" content="verification_token" /> 30 <!-- Bing Webmaster Center --> 31 <meta name="alexaVerifyID" content="verification_token" /> 32 <!-- Alexa Console --> 33 <meta name="p:domain_verify" content="code_from_pinterest" /> 34 <!-- Pinterest Console--> 35 <meta name="norton-safeweb-site-verification" content="norton_code" /> 36 <!-- Norton Safe Web --> 37 38 <!-- Identify the software used to build the document (i.e. - WordPress, Dreamweaver) --> 39 <meta name="generator" content="program" /> 40 41 <!-- Short description of your document's subject --> 42 <meta name="subject" content="your document's subject" /> 43 44 <!-- Gives a general age rating based on the document's content --> 45 <meta name="rating" content="General" /> 46 47 <!-- Allows control over how referrer information is passed --> 48 <meta name="referrer" content="no-referrer" /> 49 50 <!-- Disable automatic detection and formatting of possible phone numbers --> 51 <meta name="format-detection" content="telephone=no" /> 52 53 <!-- Completely opt out of DNS prefetching by setting to "off" --> 54 <meta http-equiv="x-dns-prefetch-control" content="off" /> 55 56 <!-- Specifies the document to appear in a specific frame --> 57 <meta http-equiv="Window-Target" content="_value" /> 58 59 <!-- Geo tags --> 60 <meta name="ICBM" content="latitude, longitude" /> 61 <meta name="geo.position" content="latitude;longitude" /> 62 <meta name="geo.region" content="country[-state]" /> 63 <!-- Country code (ISO 3166-1): mandatory, state code (ISO 3166-2): optional; eg. content="US" / content="US-NY" --> 64 <meta name="geo.placename" content="city/town" /> 65 <!-- eg. content="New York City" --> 66 67 <!-- Web Monetization https://webmonetization.org/docs/getting-started --> 68 <meta name="monetization" content="$paymentpointer.example" /> 69 <!-- Points to an external stylesheet --> 70 <link rel="stylesheet" href="https://example.com/styles.css" /> 71 72 <!-- Helps prevent duplicate content issues --> 73 <link rel="canonical" href="https://example.com/article/?page=2" /> 74 75 <!-- Links to an AMP HTML version of the current document --> 76 <link 77 rel="amphtml" 78 href="https://example.com/path/to/amp-version.html" 79 /> 80 81 <!-- Links to a JSON file that specifies "installation" credentials for the web applications --> 82 <link rel="manifest" href="manifest.json" /> 83 84 <!-- Links to information about the author(s) of the document --> 85 <link rel="author" href="humans.txt" /> 86 87 <!-- Refers to a copyright statement that applies to the link's context --> 88 <link rel="license" href="copyright.html" /> 89 90 <!-- Gives a reference to a location in your document that may be in another language --> 91 <link rel="alternate" href="https://es.example.com/" hreflang="es" /> 92 93 <!-- Provides information about an author or another person --> 94 <link 95 rel="me" 96 href="https://google.com/profiles/thenextweb" 97 type="text/html" 98 /> 99 <link rel="me" href="mailto:name@example.com" /> 100 <link rel="me" href="sms:+15035550125" /> 101 102 <!-- Links to a document that describes a collection of records, documents, or other materials of historical interest --> 103 <link rel="archives" href="https://example.com/archives/" /> 104 105 <!-- Links to top level resource in an hierarchical structure --> 106 <link rel="index" href="https://example.com/article/" /> 107 108 <!-- Provides a self reference - useful when the document has multiple possible references --> 109 <link 110 rel="self" 111 type="application/atom+xml" 112 href="https://example.com/atom.xml" 113 /> 114 115 <!-- The first, last, previous, and next documents in a series of documents, respectively --> 116 <link rel="first" href="https://example.com/article/" /> 117 <link rel="last" href="https://example.com/article/?page=42" /> 118 <link rel="prev" href="https://example.com/article/?page=1" /> 119 <link rel="next" href="https://example.com/article/?page=3" /> 120 121 <!-- Used when a 3rd party service is utilized to maintain a blog --> 122 <link 123 rel="EditURI" 124 href="https://example.com/xmlrpc.php?rsd" 125 type="application/rsd+xml" 126 title="RSD" 127 /> 128 129 <!-- Forms an automated comment when another WordPress blog links to your WordPress blog or post --> 130 <link rel="pingback" href="https://example.com/xmlrpc.php" /> 131 132 <!-- Notifies a URL when you link to it on your document --> 133 <link rel="webmention" href="https://example.com/webmention" /> 134 135 <!-- Enables posting to your own domain using a Micropub client --> 136 <link rel="micropub" href="https://example.com/micropub" /> 137 138 <!-- Open Search --> 139 <link 140 rel="search" 141 href="/open-search.xml" 142 type="application/opensearchdescription+xml" 143 title="Search Title" 144 /> 145 146 <!-- Feeds --> 147 <link 148 rel="alternate" 149 href="https://feeds.feedburner.com/example" 150 type="application/rss+xml" 151 title="RSS" 152 /> 153 <link 154 rel="alternate" 155 href="https://example.com/feed.atom" 156 type="application/atom+xml" 157 title="Atom 0.3" 158 /> 159 160 <!-- Prefetching, preloading, prebrowsing --> 161 <!-- More info: https://css-tricks.com/prefetching-preloading-prebrowsing/ --> 162 <link rel="dns-prefetch" href="//example.com/" /> 163 <link rel="preconnect" href="https://www.example.com/" /> 164 <link rel="prefetch" href="https://www.example.com/" /> 165 <link rel="prerender" href="https://example.com/" /> 166 <link rel="preload" href="image.png" as="image" /> 167 <link rel="icon" href="/favicon.ico" sizes="32x32" /> 168 <link rel="icon" href="/icon.svg" type="image/svg+xml" /> 169 <link rel="apple-touch-icon" href="/apple-touch-icon.png" /> 170 <!-- 180×180 --> 171 <link rel="manifest" href="/manifest.webmanifest" /> 172 <!-- PWA only --> 173 <base href="https://example.com/page.html" /> 174 <!-- Set the base URL for all relative URLs within the document --> 175 <!-- 176 Allows control over where resources are loaded from. 177 Place as early in the <head> as possible, as the tag 178 only applies to resources that are declared after it. 179 --> 180 <meta 181 http-equiv="Content-Security-Policy" 182 content="default-src 'self'" 183 /> 184 185 <!-- Name of web application (only should be used if the website is used as an app) --> 186 <meta name="application-name" content="Application Name" /> 187 188 <!-- Theme Color for Chrome, Firefox OS and Opera --> 189 <meta name="theme-color" content="#4285f4" /> 190 <meta name="fediverse:creator" content="@handle@example.org" /> 191 </head> 192 <body></body> 193</html>