Skip to content

Commit 408751e

Browse files
authored
docs: clarify Geo tags purpose and usage in README
2 parents f17d72c + 3a9ea79 commit 408751e

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,15 +174,17 @@ These elements provide information for how a document should be perceived, and r
174174
<meta http-equiv="Window-Target" content="_value">
175175

176176
<!-- Geo tags -->
177-
<meta name="ICBM" content="latitude, longitude">
178-
<meta name="geo.position" content="latitude;longitude">
177+
<meta name="ICBM" content="latitude, longitude"><!-- Geographic coordinates (latitude, longitude) in decimal degrees; eg. content="48.8566, 2.3522" -->
178+
<meta name="geo.position" content="latitude;longitude"><!-- Geographic coordinates; latitude and longitude are separated by a semicolon -->
179179
<meta name="geo.region" content="country[-state]"><!-- Country code (ISO 3166-1): mandatory, state code (ISO 3166-2): optional; eg. content="US" / content="US-NY" -->
180180
<meta name="geo.placename" content="city/town"><!-- eg. content="New York City" -->
181181

182182
<!-- Web Monetization https://webmonetization.org/docs/getting-started -->
183183
<meta name="monetization" content="$paymentpointer.example">
184184
```
185185

186+
**Note:** Geo tags are **not** used by browsers directly — they are intended for search engines, web crawlers, and location-based services to understand the geographic relevance of a page's content. `ICBM` (named after the military ICBM address convention) and `geo.position` both express coordinates in decimal degrees; `ICBM` uses a comma separator while `geo.position` uses a semicolon. `geo.region` identifies the country (and optionally the state/region) using ISO codes, and `geo.placename` provides a human-readable place name.
187+
186188
- 📖 [Meta tags that Google understands](https://support.google.com/webmasters/answer/79812?hl=en)
187189
- 📖 [WHATWG Wiki: MetaExtensions](https://wiki.whatwg.org/wiki/MetaExtensions)
188190
- 📖 [ICBM on Wikipedia](https://en.wikipedia.org/wiki/ICBM_address#Modern_use)

0 commit comments

Comments
 (0)