Epstein Files Full PDF

CLICK HERE
Technopedia Center
PMB University Brochure
Faculty of Engineering and Computer Science
S1 Informatics S1 Information Systems S1 Information Technology S1 Computer Engineering S1 Electrical Engineering S1 Civil Engineering

faculty of Economics and Business
S1 Management S1 Accountancy

Faculty of Letters and Educational Sciences
S1 English literature S1 English language education S1 Mathematics education S1 Sports Education
teknopedia

  • Registerasi
  • Brosur UTI
  • Kip Scholarship Information
  • Performance
Flag Counter
  1. World Encyclopedia
  2. Sitemaps - Wikipedia
Sitemaps - Wikipedia
Checked
Page protected with pending changes
From Wikipedia, the free encyclopedia

Page version status

This is an accepted version of this page

This is the latest accepted revision, reviewed on 15 February 2026.
Protocol and file format to list the URLs of a website
For the graphical representation of the architecture of a web site, see site map.

This article contains instructions or advice. Wikipedia is not a guidebook; please help rewrite such content to be encyclopedic or move it to Wikiversity, Wikibooks, or Wikivoyage. (March 2021)

Sitemaps is a protocol in XML format meant for a webmaster to inform search engines about URLs on a website that are available for web crawling. It allows webmasters to include additional information about each URL: when it was last updated, how often it changes, and how important it is in relation to other URLs of the site. This allows search engines to crawl the site more efficiently and to find URLs that may be isolated from the rest of the site's content. The Sitemaps protocol is a URL inclusion protocol and complements robots.txt, a URL exclusion protocol.

History

[edit]

Google first introduced Sitemaps 0.84 in June 2005 so web developers could publish lists of links from across their sites.[1] Google, Yahoo! and Microsoft announced joint support for the Sitemaps protocol in November 2006.[2] The schema version was changed to "Sitemap 0.90", but no other changes were made.

In April 2007, Ask.com and IBM announced support for Sitemaps.[3] Also, Google, Yahoo, MSN announced auto-discovery for sitemaps through robots.txt. In May 2007, the state governments of Arizona, California, Utah and Virginia announced they would use Sitemaps on their web sites.[4]

The Sitemaps protocol is based on ideas[5] from "Crawler-friendly Web Servers,"[6] with improvements including auto-discovery through robots.txt and the ability to specify the priority and change frequency of pages.

Purpose

[edit]

Sitemaps are particularly beneficial on websites where:

  • Some areas of the website are not available through the browsable interface[7]
  • Webmasters use rich Ajax, Silverlight, or Flash content that is not normally processed by search engines.
  • The site is very large and there is a chance for the web crawlers to overlook some of the new or recently updated content[7]
  • When websites have a huge number of pages that are isolated or not well linked together, or[7]
  • When a website has few external links[7]
  • The website contains a large amount of rich media content (such as video or images) or is included in Google News.[8]

File format

[edit]

The Sitemap Protocol format consists of XML tags. The file itself must be UTF-8 encoded. Sitemaps can also be just a plain text list of URLs. They can also be compressed in .gz format.

A sample Sitemap that contains just one URL and uses all optional tags is shown below.

<?xml version='1.0' encoding='UTF-8'?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"
    xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <url>
        <loc>https://example.com/</loc>
        <lastmod>2006-11-18</lastmod>
        <changefreq>daily</changefreq>
        <priority>0.8</priority>
    </url>
</urlset>

The Sitemap XML protocol is also extended to provide a way of listing multiple Sitemaps in a 'Sitemap index' file. The maximum Sitemap size of 50 MiB (uncompressed) or 50,000 URLs[9] means this is necessary for large sites.

An example of Sitemap index referencing one separate sitemap follows.

<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/siteindex.xsd"
    xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
   <sitemap>
      <loc>https://www.example.com/sitemap1.xml.gz</loc>
      <lastmod>2014-10-01T18:23:17+00:00</lastmod>
   </sitemap>
</sitemapindex>

Element definitions

[edit]

The definitions for the elements are shown below:[9]

Element Required? Description
<urlset> Yes The document-level element for the Sitemap. The rest of the document after the '<?xml version>' element must be contained in this.
<url> Yes Parent element for each entry.
<sitemapindex> Yes The document-level element for the Sitemap index. The rest of the document after the '<?xml version>' element must be contained in this.
<sitemap> Yes Parent element for each entry in the index.
<loc> Yes Provides the full URL of the page or sitemap, including the protocol (e.g. http, https) and a trailing slash, if required by the site's hosting server. This value must be shorter than 2,048 characters. Note that ampersands in the URL need to be escaped as &amp;.
<lastmod> No The date that the file was last modified, in ISO 8601 format. This can display the full date and time or, if desired, may simply be the date in the format YYYY-MM-DD.
<changefreq> No How frequently the page may change:
  • always
  • hourly
  • daily
  • weekly
  • monthly
  • yearly
  • never

"Always" is used to denote documents that change each time that they are accessed. "Never" is used to denote archived URLs (i.e. files that will not be changed again).

This is used only as a guide for crawlers, and is not used to determine how frequently pages are indexed.

Does not apply to <sitemap> elements.

<priority> No The priority of that URL relative to other URLs on the site. This allows webmasters to suggest to crawlers which pages are considered more important.

The valid range is from 0.0 to 1.0, with 1.0 being the most important. The default value is 0.5.

Rating all pages on a site with a high priority does not affect search listings, as it is only used to suggest to the crawlers how important pages of the site are to one another.

Does not apply to <sitemap> elements.

Support for the elements that are not required can vary from one search engine to another.[9]

Google ignores <priority>and <changefreq> values.[10]

Other formats

[edit]

Text file

[edit]

The Sitemaps protocol allows the Sitemap to be a simple list of URLs in a text file. The file specifications of XML Sitemaps apply to text Sitemaps as well; the file must be UTF-8 encoded, and cannot be more than 50MiB (uncompressed) or contain more than 50,000 URLs. Sitemaps that exceed these limits should be broken up into multiple sitemaps with a sitemap index file (a file that points to multiple sitemaps).[11]

Syndication feed

[edit]

A syndication feed is a permitted method of submitting URLs to crawlers; this is advised mainly for sites that already have syndication feeds. One stated drawback is this method might only provide crawlers with more recently created URLs, but other URLs can still be discovered during normal crawling.[9]

It can be beneficial to have a syndication feed as a delta update (containing only the newest content) to supplement a complete sitemap.

Search engine submission

[edit]

If Sitemaps are submitted directly to a search engine (pinged), it will return status information and any processing errors. The details involved with submission will vary with the different search engines. The location of the sitemap can also be included in the robots.txt file by adding the following line:

Sitemap: <sitemap_location>

The <sitemap_location> should be the complete URL to the sitemap, such as:

https://www.example.org/sitemap.xml

This directive is independent of the user-agent line, so it doesn't matter where it is placed in the file. If the website has several sitemaps, multiple "Sitemap:" records may be included in robots.txt, or the URL can simply point to the main sitemap index file.

The following table lists the sitemap submission URLs for a few major search engines:

Search engine Submission URL Help page Market
Baidu https://zhanzhang.baidu.com/dashboard/index Baidu Webmaster Dashboard China, Singapore
Bing (and Yahoo!) https://www.bing.com/webmaster/ping.aspx?siteMap= Bing Webmaster Tools Global
Yandex https://webmaster.yandex.com/site/map.xml Sitemaps files Russia, Belarus, Kazakhstan, Turkey

Sitemap URLs submitted using the sitemap submission URLs need to be URL-encoded, for example: replace : (colon) with %3A, replace / (slash) with %2F.[9]

Google retired sitemap submissions using URLs in late 2023.[12]

Limitations for search engine indexing

[edit]

Sitemaps supplement and do not replace the existing crawl-based mechanisms that search engines already use to discover URLs. Using this protocol does not guarantee that web pages will be included in search indexes, nor does it influence the way that pages are ranked in search results. Specific examples are provided below.

  • Google - Webmaster Support on Sitemaps: "Using a sitemap doesn't guarantee that all the items in your sitemap will be crawled and indexed, as Google processes rely on complex algorithms to schedule crawling. However, in most cases, your site will benefit from having a sitemap, and you'll never be penalized for having one."[13]
  • Bing - Bing uses the standard sitemaps.org protocol and is very similar to the one mentioned below.
  • Yahoo - After the search deal commenced between Yahoo! Inc. and Microsoft, Yahoo! Site Explorer has merged with Bing Webmaster Tools.

Sitemap limits

[edit]

Sitemap files have a limit of 50,000 URLs and 50MiB (52,428,800 bytes) per sitemap. Sitemaps can be compressed using gzip, reducing bandwidth consumption. Multiple sitemap files are supported, with a Sitemap index file serving as an entry point. Sitemap index files may not list more than 50,000 Sitemaps and must be no larger than 50MiB and can be compressed. You can have more than one Sitemap index file.[9]

According to Google, a single property in Google Search Console can include up to 500 sitemap index files. Additionally, sitemaps that are referenced in a sitemap index file must be located in the same directory as the sitemap index file, or in a subdirectory lower in the site hierarchy.[14]

Best practice for optimising a sitemap index for search engine crawlability is to ensure the index refers only to sitemaps as opposed to other sitemap indexes. Nesting a sitemap index within a sitemap index is invalid according to Google.[15]

Additional sitemap types

[edit]

A number of additional XML sitemap types outside of the scope of the Sitemaps protocol are supported by Google to allow webmasters to provide additional data on the content of their websites. Video and image sitemaps are intended to improve the capability of websites to rank in image and video searches.[16][17]

Video sitemaps

[edit]

Video sitemaps indicate data related to embedding and autoplaying, preferred thumbnails to show in search results, publication date, video duration, and other metadata.[17] Video sitemaps are also used to allow search engines to index videos that are embedded on a website, but that are hosted externally, such as on Vimeo or YouTube.

Image sitemaps

[edit]

Image sitemaps are used to indicate image metadata, such as licensing information, geographic location, and an image's caption.[16]

Google News Sitemaps

[edit]

Google supports a Google News sitemap type for facilitating quick indexing of time-sensitive news subjects.[18][19]

Multilingual and multinational sitemaps

[edit]

In December 2011, Google announced the annotations for sites that want to target users in many languages and, optionally, countries. A few months later Google announced, on their official blog,[20] that they are adding support for specifying the rel="alternate" and hreflang annotations in Sitemaps. Instead of the (until then only option) HTML link elements the Sitemaps option offered many advantages which included a smaller page size and easier deployment for some websites.

One example of the multilingual sitemap would be as follows:

If for example we have a site that targets English language users through https://www.example.com/en and Greek language users through https://www.example.com/gr, up until then the only option was to add the hreflang annotation either in the HTTP header or as HTML elements on both URLs like this

<link rel="alternate" hreflang="en" href="https://www.example.com/en" />
<link rel="alternate" hreflang="gr" href="https://www.example.com/gr" />

But now, one can alternatively use the following equivalent markup in Sitemaps:

 <url>
   <loc>https://www.example.com/en</loc>
    <xhtml:link
      rel="alternate"
      hreflang="gr"
      href="https://www.example.com/gr" />
    <xhtml:link
      rel="alternate"
      hreflang="en"
      href="https://www.example.com/en" />
 </url>
 <url>
   <loc>https://www.example.com/gr</loc>
    <xhtml:link
      rel="alternate"
      hreflang="gr"
      href="https://www.example.com/gr" />
    <xhtml:link
      rel="alternate"
      hreflang="en"
      href="https://www.example.com/en" />
 </url>

See also

[edit]
  • Biositemap
  • Metadata
  • Resources of a Resource
  • Yahoo! Site Explorer
  • Google Webmaster Tools

References

[edit]
  1. ^ Shivakumar, Shiva (2005-06-02). "Google Blog: Webmaster-friendly". Archived from the original on 2005-06-08. Retrieved 2021-12-31.
  2. ^ "Major Search Engines Unite to Support a Common Mechanism for Website Submission". News from Google. November 16, 2006. Retrieved 2021-12-31.
  3. ^ Pathak, Vivek (2007-05-11). "The Ask.com Blog: Sitemaps Autodiscovery". Ask's Official Blog. Archived from the original on 2007-05-18. Retrieved 2021-12-31.
  4. ^ "Information for Public Sector Organizations". Archived from the original on 2007-04-30.
  5. ^ M.L. Nelson; J.A. Smith; del Campo; H. Van de Sompel; X. Liu (2006). "Efficient, Automated Web Resource Harvesting" (PDF). WIDM'06.
  6. ^ O. Brandman, J. Cho, Hector Garcia-Molina, and Narayanan Shivakumar (2000). "Crawler-friendly web servers". Proceedings of ACM SIGMETRICS Performance Evaluation Review, Volume 28, Issue 2. doi:10.1145/362883.362894.{{cite conference}}: CS1 maint: multiple names: authors list (link)
  7. ^ a b c d "Learn about sitemaps | Search Central". Google Developers. Retrieved 2021-06-01.
  8. ^ "Build and submit a sitemap". Google Developers. Retrieved 2025-10-26.
  9. ^ a b c d e f "Sitemaps XML format". Sitemaps.org. 2016-11-21. Retrieved 2016-12-01.
  10. ^ "Build and submit a sitemap". Google Inc. Retrieved 2025-10-26.
  11. ^ "Build and submit a sitemap - Search Console Help". Support.google.com. Retrieved 30 November 2020.
  12. ^ "Sitemaps ping endpoint is going away". 2025-04-04. Retrieved 2025-04-04.
  13. ^ "About Google Sitemaps". 2016-12-01. Retrieved 2016-12-01.
  14. ^ "Build and submit large sitemaps". Google Developers. Retrieved 2025-10-26.
  15. ^ "Sitemaps report - Search Console Help". support.google.com. Retrieved 2020-04-15.
  16. ^ a b "Image Sitemaps". Google Search Console. Retrieved 28 December 2018.
  17. ^ a b "Video Sitemaps". Google Search Console. Retrieved 28 December 2018.
  18. ^ Bigby, Garenne (21 June 2016). "Why You should be using a Google News Sitemap". Dyno Mapper. Retrieved 28 December 2018.
  19. ^ "Google News Sitemaps". Google Search Console. Retrieved 28 December 2018.
  20. ^ "Multilingual and multinational site annotations in Sitemaps". Google Webmaster Central Blog. Pierre Far. May 24, 2012.

External links

[edit]
  • Official website
  • Google news groups
    • Sitemaps
    • Webmaster help - Sitemap Archived 2006-12-21 at the Wayback Machine
  • v
  • t
  • e
Google
a subsidiary of Alphabet
Company
Divisions
  • AI
  • Area 120
  • ATAP
  • Brain
  • China
  • Cloud Platform
  • Energy
  • Google.org
    • Crisis Response
  • Health
  • Registry
Subsidiaries
Active
  • DeepMind
  • Fitbit
  • ITA Software
  • Jigsaw
  • Looker
  • Mandiant
  • Security Operations
  • Owlchemy Labs
Defunct
  • Actifio
  • Adscape
  • Akwan Information Technologies
  • Anvato
  • Apigee
  • BandPage
  • Bitium
  • BufferBox
  • Crashlytics
  • Dodgeball
  • DoubleClick
  • Dropcam
  • Endoxon
  • Flutter
  • Global IP Solutions
  • Green Throttle Games
  • GreenBorder
  • Gridcentric
  • ImageAmerica
  • Impermium
  • Invite Media
  • Kaltix
  • Marratech
  • Meebo
  • Metaweb
  • Neotonic Software
  • Neverware
  • Nik Software
  • Orbitera
  • Pyra Labs
  • Quest Visual
  • Reqwireless
  • RightsFlow
  • Sidewalk Labs
  • SlickLogin
  • Titan Aerospace
  • Typhoon Studios
  • Urban Engines
  • Vicarious
  • Viewdle
  • Wavii
  • Wildfire Interactive
  • YouTube Next Lab and Audience Development Group
Programs
  • Business Groups
  • Computing University Initiative
  • Contact Lens
  • Content ID
  • CrossCheck
  • Data Liberation Front
  • Data Transfer Project
  • Developer Expert
  • DigiKavach
  • DigiPivot
  • Digital Garage
  • Digital News Initiative
  • Digital Unlocked
  • Dragonfly
  • Founders' Award
  • Free Zone
  • Get Your Business Online
  • Google for Education
  • Google for Startups
  • Living Stories
  • Made with Code
  • News Lab
  • PowerMeter
  • Privacy Sandbox
  • Project Nightingale
  • Project Nimbus
  • Project Sunroof
  • Project Zero
  • Quantum Artificial Intelligence Lab
  • RechargeIT
  • Sensorvault
  • Silicon Initiative
  • Solve for X
  • Street View Trusted
  • Student Ambassador Program
  • Vevo
  • YouTube BrandConnect
  • YouTube Creator Awards
  • YouTube Select
  • YouTube Original Channel Initiative
  • Year in Search
  • YouTube Rewind
    • 2018
    • 2019
Events
  • AlphaGo versus Fan Hui
  • AlphaGo versus Lee Sedol
  • AlphaGo versus Ke Jie
  • Android Developer Challenge
  • Android Developer Day
  • Android Developer Lab
  • CNN/YouTube presidential debates
  • Code-in
  • Code Jam
  • Developer Day
  • Developers Live
  • Doodle4Google
  • Future of Go Summit
  • G-Day
  • Hash Code
  • I/O
  • Lunar X Prize
  • Mapathon
  • Science Fair
  • Summer of Code
  • World Chess Championship 2024
  • YouTube Awards
  • YouTube Comedy Week
  • YouTube Live
  • YouTube Music Awards
    • 2013
    • 2015
  • YouTube Space Lab
  • YouTube Symphony Orchestra
Infrastructure
  • 111 Eighth Avenue
  • Android lawn statues
  • Androidland
  • Barges
  • Binoculars Building
  • Central Saint Giles
  • Chelsea Market
  • Chrome Zone
  • Data centers
  • GeoEye-1
  • Googleplex
  • Ivanpah Solar Power Facility
  • James R. Thompson Center
  • King's Cross
  • Mayfield Mall
  • Pier 57
  • Sidewalk Toronto
  • St. John's Terminal
  • Submarine cables
    • Dunant
    • Grace Hopper
    • Unity
  • WiFi
  • YouTube Space
  • YouTube Theater
People
Current
  • Krishna Bharat
  • Vint Cerf
  • Jeff Dean
  • John Doerr
  • Sanjay Ghemawat
  • Al Gore
  • John L. Hennessy
  • Urs Hölzle
  • Salar Kamangar
  • Ray Kurzweil
  • Ann Mather
  • Alan Mulally
  • Rick Osterloh
  • Sundar Pichai (CEO)
  • Ruth Porat (CFO)
  • Rajen Sheth
  • Hal Varian
  • Neal Mohan
Former
  • Andy Bechtolsheim
  • Sergey Brin (co-founder)
  • David Cheriton
  • Matt Cutts
  • David Drummond
  • Alan Eustace
  • Timnit Gebru
  • Omid Kordestani
  • Paul Otellini
  • Larry Page (co-founder)
  • Patrick Pichette
  • Eric Schmidt
  • Ram Shriram
  • Amit Singhal
  • Shirley M. Tilghman
  • Rachel Whetstone
  • Susan Wojcicki
Criticism
General
  • Censorship
  • DeGoogle
  • FairSearch
  • "Google's Ideological Echo Chamber"
  • No Tech for Apartheid
  • Privacy concerns
    • Street View
    • YouTube
  • Trade unions
    • Alphabet Workers Union
  • YouTube copyright issues
Incidents
  • Backdoor advertisement controversy
  • Blocking of YouTube videos in Germany
  • Data breach
  • Elsagate
  • Fantastic Adventures scandal
  • Kohistan video case
  • Reactions to Innocence of Muslims
  • San Francisco tech bus protests
  • Services outages
  • Slovenian government incident
  • Walkouts
  • YouTube headquarters shooting
Other
  • Android apps
  • April Fools' Day jokes
  • Doodles
    • Doodle Champion Island Games
    • Magic Cat Academy
    • Pac-Man
  • Easter eggs
  • History
    • Gmail
    • Search
    • YouTube
  • Logo
  • Material Design
  • Mergers and acquisitions
Development
Software
A–C
  • Accelerated Linear Algebra
  • AMP
  • Actions on Google
  • ALTS
  • American Fuzzy Lop
  • Android Cloud to Device Messaging
  • Android Debug Bridge
  • Android NDK
  • Android Runtime
  • Android SDK
  • Android Studio
  • Angular
  • AngularJS
  • Apache Beam
  • APIs
  • App Engine
  • App Inventor
  • App Maker
  • App Runtime for Chrome
  • AppJet
  • Apps Script
  • AppSheet
  • ARCore
  • Base
  • Bazel
  • BeyondCorp
  • Bigtable
  • BigQuery
  • Bionic
  • Blockly
  • Borg
  • Caja
  • Cameyo
  • Chart API
  • Charts
  • Chrome Frame
  • Chromium
    • Blink
  • Closure Tools
  • Cloud Connect
  • Cloud Dataflow
  • Cloud Datastore
  • Cloud Messaging
  • Cloud Shell
  • Cloud Storage
  • Code Search
  • Compute Engine
  • Cpplint
D–N
  • Dalvik
  • Data Protocol
  • Dialogflow
  • Exposure Notification
  • Fast Pair
  • Fastboot
  • Federated Learning of Cohorts
  • File System
  • Firebase
  • Firebase Studio
  • Firebase Cloud Messaging
  • FlatBuffers
  • Flutter
  • Freebase
  • Gadgets
  • Ganeti
  • Gears
  • Gerrit
  • Global Cache
  • GLOP
  • gRPC
  • Gson
  • Guava
  • Guetzli
  • Guice
  • gVisor
  • GYP
  • JAX
  • Jetpack Compose
  • Keyhole Markup Language
  • Kubernetes
  • Kythe
  • LevelDB
  • Lighthouse
  • Looker Studio
  • lmctfy
  • MapReduce
  • Mashup Editor
  • Matter
  • Mobile Services
  • Namebench
  • Native Client
  • Neatx
  • Neural Machine Translation
  • Nomulus
O–Z
  • Open Location Code
  • OpenRefine
  • OpenSocial
  • Optimize
  • OR-Tools
  • Pack
  • PageSpeed
  • Piper
  • Plugin for Eclipse
  • Polymer
  • Programmable Search Engine
  • Project Shield
  • Public DNS
  • reCAPTCHA
  • RenderScript
  • SafetyNet
  • SageTV
  • Schema.org
  • Search Console
  • Shell
  • Sitemaps
  • Skia Graphics Engine
  • Spanner
  • Sputnik
  • Stackdriver
  • Swiffy
  • Tango
  • TensorFlow
  • Tesseract
  • Test
  • Translator Toolkit
  • Urchin
    • UTM parameters
  • V8
  • VirusTotal
  • VisBug
  • Wave Federation Protocol
  • Weave
  • Web Accelerator
  • Web Designer
  • Web Server
  • Web Toolkit
  • Webdriver Torso
  • WebRTC
Operating systems
  • Android
    • Cupcake
    • Donut
    • Eclair
    • Froyo
    • Gingerbread
    • Honeycomb
    • Ice Cream Sandwich
    • Jelly Bean
    • KitKat
    • Lollipop
    • Marshmallow
    • Nougat
    • Oreo
    • Pie
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • version history
    • smartphones
  • Android Automotive
  • Android Go
    • devices
  • Android Things
  • Android TV
    • devices
  • Android XR
  • ChromeOS
  • ChromeOS Flex
  • ChromiumOS
  • Fuchsia
  • Glass OS
  • gLinux
  • Goobuntu
  • TV
    • 2010–2014
    • 2020–present
  • Wear OS
Machine learning models
  • BERT
  • Chinchilla
  • DreamBooth
  • Gemini
  • Gemma
  • Imagen (2023)
  • LaMDA
  • PaLM
  • T5
  • Veo (text-to-video model)
  • VideoPoet
  • XLNet
Neural networks
  • EfficientNet
  • Gato
  • Inception
  • MobileNet
  • Transformer
  • WaveNet
Computer programs
  • AlphaDev
  • AlphaFold
  • AlphaGeometry
  • AlphaGo
  • AlphaGo Zero
  • AlphaStar
  • AlphaZero
  • Master
  • MuZero
Formats and codecs
  • AAB
  • APK
  • AV1
  • iLBC
  • iSAC
  • libvpx
  • Lyra
  • Protocol Buffers
  • Ultra HDR
  • VP3
  • VP6
  • VP8
  • VP9
  • WebM
  • WebP
  • WOFF2
Programming languages
  • Carbon
  • Dart
  • Go
  • Sawzall
Search algorithms
  • Googlebot
  • Hummingbird
  • Mobilegeddon
  • PageRank
    • matrix
  • Panda
  • Penguin
  • Pigeon
  • RankBrain
Domain names
  • .app
  • .dev
  • .google
  • .zip
  • g.co
  • google.by
Typefaces
  • Croscore
  • Noto
  • Product Sans
  • Roboto
Software
A
  • Aardvark
  • Account
    • Dashboard
    • Takeout
  • Ad Manager
  • AdMob
  • Ads
  • AdSense
  • Affiliate Network
  • Alerts
  • Allo
  • Analytics
  • Antigravity
  • Android Auto
  • Android Beam
  • Answers
  • Apture
  • Arts & Culture
  • Assistant
  • Attribution
  • Authenticator
B
  • BebaPay
  • BeatThatQuote.com
  • Beam
  • Blog Search
  • Blogger
  • Body
  • Bookmarks
  • Books
    • Ngram Viewer
  • Browser Sync
  • Building Maker
  • Bump
  • BumpTop
  • Buzz
C
  • Calendar
  • Cast
  • Catalogs
  • Chat
  • Checkout
  • Chrome
  • Chrome Apps
  • Chrome Experiments
  • Chrome Remote Desktop
  • Chrome Web Store
  • Classroom
  • Cloud Print
  • Cloud Search
  • Contacts
  • Contributor
  • Crowdsource
  • Currents (social app)
  • Currents (news app)
D
  • Data Commons
  • Dataset Search
  • Desktop
  • Dictionary
  • Dinosaur Game
  • Directory
  • Docs
  • Docs Editors
  • Domains
  • Drawings
  • Drive
  • Duo
E
  • Earth
  • Etherpad
  • Expeditions
  • Express
F
  • Family Link
  • Fast Flip
  • FeedBurner
  • fflick
  • Fi Wireless
  • Finance
  • Files
  • Find Hub
  • Fit
  • Flights
  • Flu Trends
  • Fonts
  • Forms
  • Friend Connect
  • Fusion Tables
G
  • Gboard
  • Gemini
    • Nano Banana
  • Gesture Search
  • Gizmo5
  • Google+
  • Gmail
  • Goggles
  • GOOG-411
  • Grasshopper
  • Groups
H
  • Hangouts
  • Helpouts
  • Home
I
  • iGoogle
  • Images
    • Image Labeler
  • Image Swirl
  • Inbox by Gmail
  • Input Tools
    • Japanese Input
    • Pinyin
  • Insights for Search
J
  • Jaiku
  • Jamboard
K
  • Kaggle
  • Keep
  • Knol
L
  • Labs
  • Latitude
  • Lens
  • Like.com
  • Live Transcribe
  • Lively
M
  • Map Maker
  • Maps
  • Maps Navigation
  • Marketing Platform
  • Meet
  • Messages
  • Moderator
  • My Tracks
N
  • Nearby Share
  • News
  • News & Weather
  • News Archive
  • Notebook
  • NotebookLM
  • Now
O
  • Offers
  • One
  • One Pass
  • Opinion Rewards
  • Orkut
  • Oyster
P
  • Panoramio
  • PaperofRecord.com
  • Patents
  • Page Creator
  • Pay (mobile app)
  • Pay (payment method)
  • Pay Send
  • People Cards
  • Person Finder
  • Personalized Search
  • Photomath
  • Photos
  • Picasa
  • Picasa Web Albums
  • Picnik
  • Pixel Camera
  • Play
  • Play Books
  • Play Games
  • Play Music
  • Play Newsstand
  • Play Pass
  • Play Services
  • Podcasts
  • Poly
  • Postini
  • PostRank
  • Primer
  • Public Alerts
  • Public Data Explorer
Q
  • Question Hub
  • Quick, Draw!
  • Quick Search Box
  • Quick Share
  • Quickoffice
R
  • Read Along
  • Reader
  • Reply
S
  • Safe Browsing
  • SageTV
  • Santa Tracker
  • Schemer
  • Scholar
  • Search
    • AI Overviews
    • Knowledge Graph
    • SafeSearch
  • Searchwiki
  • Sheets
  • Shoploop
  • Shopping
  • Sidewiki
  • Sites
  • Slides
  • Snapseed
  • Socratic
  • Softcard
  • Songza
  • Sound Amplifier
  • Spaces
  • Sparrow (chatbot)
  • Sparrow (email client)
  • Speech Recognition & Synthesis
  • Squared
  • Stadia
  • Station
  • Store
  • Street View
  • Surveys
  • Sync
T
  • Tables
  • Talk
  • TalkBack
  • Tasks
  • Tenor
  • Tez
  • Tilt Brush
  • Toolbar
  • Toontastic 3D
  • Translate
  • Travel
  • Trendalyzer
  • Trends
  • TV
U
  • URL Shortener
V
  • Video
  • Vids
  • Voice
  • Voice Access
  • Voice Search
W
  • Wallet
  • Wave
  • Waze
  • WDYL
  • Web Light
  • Where Is My Train
  • Widevine
  • Wiz
  • Word Lens
  • Workspace
  • Workspace Marketplace
Y
  • YouTube
  • YouTube Kids
  • YouTube Music
  • YouTube Premium
  • YouTube Shorts
  • YouTube Studio
  • YouTube TV
  • YouTube VR
Hardware
Pixel
Smartphones
  • Pixel (2016)
  • Pixel 2 (2017)
  • Pixel 3 (2018)
  • Pixel 3a (2019)
  • Pixel 4 (2019)
  • Pixel 4a (2020)
  • Pixel 5 (2020)
  • Pixel 5a (2021)
  • Pixel 6 (2021)
  • Pixel 6a (2022)
  • Pixel 7 (2022)
  • Pixel 7a (2023)
  • Pixel Fold (2023)
  • Pixel 8 (2023)
  • Pixel 8a (2024)
  • Pixel 9 (2024)
  • Pixel 9 Pro Fold (2024)
  • Pixel 9a (2025)
  • Pixel 10 (2025)
  • Pixel 10 Pro Fold (2025)
Smartwatches
  • Pixel Watch (2022)
  • Pixel Watch 2 (2023)
  • Pixel Watch 3 (2024)
  • Pixel Watch 4 (2025)
Tablets
  • Pixel C (2015)
  • Pixel Slate (2018)
  • Pixel Tablet (2023)
Laptops
  • Chromebook Pixel (2013–2015)
  • Pixelbook (2017)
  • Pixelbook Go (2019)
Other
  • Pixel Buds (2017–present)
Nexus
Smartphones
  • Nexus One (2010)
  • Nexus S (2010)
  • Galaxy Nexus (2011)
  • Nexus 4 (2012)
  • Nexus 5 (2013)
  • Nexus 6 (2014)
  • Nexus 5X (2015)
  • Nexus 6P (2015)
Tablets
  • Nexus 7 (2012)
  • Nexus 10 (2012)
  • Nexus 7 (2013)
  • Nexus 9 (2014)
Other
  • Nexus Q (2012)
  • Nexus Player (2014)
Other
  • Android Dev Phone
  • Android One
  • Cardboard
  • Chromebit
  • Chromebook
  • Chromebox
  • Chromecast
  • Clips
  • Daydream
  • Fitbit
  • Glass
  • Liftware
  • Liquid Galaxy
  • Nest
    • smart speakers
    • Thermostat
    • Wifi
  • Play Edition
  • Project Ara
  • OnHub
  • Pixel Visual Core
  • Project Iris
  • Search Appliance
  • Sycamore processor
  • Tensor
  • Tensor Processing Unit
  • Titan Security Key
  • v
  • t
  • e
Litigation
Advertising
  • Feldman v. Google, Inc. (2007)
  • Rescuecom Corp. v. Google Inc. (2009)
  • Goddard v. Google, Inc. (2009)
  • Rosetta Stone Ltd. v. Google, Inc. (2012)
  • Google, Inc. v. American Blind & Wallpaper Factory, Inc. (2017)
  • Jedi Blue
Antitrust
  • European Union (2010–present)
  • United States v. Adobe Systems, Inc., Apple Inc., Google Inc., Intel Corporation, Intuit, Inc., and Pixar (2011)
  • Umar Javeed, Sukarma Thapar, Aaqib Javeed vs. Google LLC and Ors. (2019)
  • United States v. Google LLC (2020)
  • Epic Games v. Google (2021)
  • United States v. Google LLC (2023)
Intellectual
property
  • Perfect 10, Inc. v. Amazon.com, Inc. (2007)
  • Viacom International, Inc. v. YouTube, Inc. (2010)
  • Lenz v. Universal Music Corp.(2015)
  • Authors Guild, Inc. v. Google, Inc. (2015)
  • Field v. Google, Inc. (2016)
  • Google LLC v. Oracle America, Inc. (2021)
  • Smartphone patent wars
Privacy
  • Rocky Mountain Bank v. Google, Inc. (2009)
  • Hibnick v. Google, Inc. (2010)
  • United States v. Google Inc. (2012)
  • Judgement of the German Federal Court of Justice on Google's autocomplete function (2013)
  • Joffe v. Google, Inc. (2013)
  • Mosley v SARL Google (2013)
  • Google Spain v AEPD and Mario Costeja González (2014)
  • Frank v. Gaos (2019)
Other
  • Garcia v. Google, Inc. (2015)
  • Google LLC v Defteros (2020)
  • Gonzalez v. Google LLC (2022)
Related
Concepts
  • Beauty YouTuber
  • BookTube
  • BreadTube
  • "Don't be evil"
  • Gayglers
  • Google as a verb
  • Google bombing
    • 2004 U.S. presidential election
  • Google effect
  • Googlefight
  • Google hacking
  • Googleshare
  • Google tax
  • Googlewhack
  • Googlization
  • Illegal flower tribute
  • Objectives and key results
  • Rooting
  • Search engine manipulation effect
  • Side project time
  • Sitelink
  • Site reliability engineering
  • StudyTube
  • VTuber
  • YouTube Poop
  • YouTuber
    • list
Products
Android
  • Booting process
  • Custom distributions
  • Features
  • Recovery mode
  • Software development
Street View coverage
  • Africa
  • Antarctica
  • Asia
    • Israel
  • Europe
  • North America
    • Canada
    • United States
  • Oceania
  • South America
    • Argentina
    • Chile
    • Colombia
YouTube
  • Copyright strike
  • Education
  • Features
  • Moderation
  • Most-disliked videos
  • Most-liked videos
  • Most-subscribed channels
  • Most-viewed channels
  • Most-viewed videos
    • Arabic music videos
    • Chinese music videos
    • French music videos
    • Indian videos
    • Pakistani videos
  • Official channel
  • Social impact
  • YouTube Premium original programming
Other
  • Gmail interface
  • Maps pin
  • Most downloaded Google Play applications
  • Stadia games
Documentaries
  • AlphaGo
  • Google: Behind the Screen
  • Google Maps Road Trip
  • Google and the World Brain
  • The Creepy Line
Books
  • Google Hacks
  • The Google Story
  • Googled: The End of the World as We Know It
  • How Google Works
  • I'm Feeling Lucky
  • In the Plex
  • The MANIAC
Popular culture
  • Google Feud
  • Google Me (film)
  • "Google Me" (Kim Zolciak song)
  • "Google Me" (Teyana Taylor song)
  • Is Google Making Us Stupid?
  • Proceratium google
  • Matt Nathanson: Live at Google
  • The Billion Dollar Code
  • The Internship
  • Where on Google Earth is Carmen Sandiego?
Other
  • "Attention Is All You Need"
  • elgooG
  • Generative pre-trained transformer
  • "Me at the zoo"
  • Predictions of the end
  • Relationship with Wikipedia
  • "Reunion"
  • Robot Constitution
Italics denote discontinued products.
  • Category
  • Outline
Retrieved from "https://teknopedia.ac.id/w/index.php?title=Sitemaps&oldid=1338480641"
Categories:
  • Google services
  • XML-based standards
  • Web design
Hidden categories:
  • CS1 maint: multiple names: authors list
  • Articles with short description
  • Short description matches Wikidata
  • Wikipedia pending changes protected pages
  • Articles needing cleanup from March 2021
  • All pages needing cleanup
  • Articles containing how-to sections
  • Official website different in Wikidata and Wikipedia
  • Webarchive template wayback links

  • indonesia
  • Polski
  • العربية
  • Deutsch
  • English
  • Español
  • Français
  • Italiano
  • مصرى
  • Nederlands
  • 日本語
  • Português
  • Sinugboanong Binisaya
  • Svenska
  • Українська
  • Tiếng Việt
  • Winaray
  • 中文
  • Русский
Sunting pranala
url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url
Pusat Layanan

UNIVERSITAS TEKNOKRAT INDONESIA | ASEAN's Best Private University
Jl. ZA. Pagar Alam No.9 -11, Labuhan Ratu, Kec. Kedaton, Kota Bandar Lampung, Lampung 35132
Phone: (0721) 702022
Email: pmb@teknokrat.ac.id