diff --git a/files/en-us/learn/html/introduction_to_html/the_head_metadata_in_html/index.html b/files/en-us/learn/html/introduction_to_html/the_head_metadata_in_html/index.html index 01ce80aec600d3b..4c38b4f913144d0 100644 --- a/files/en-us/learn/html/introduction_to_html/the_head_metadata_in_html/index.html +++ b/files/en-us/learn/html/introduction_to_html/the_head_metadata_in_html/index.html @@ -164,7 +164,7 @@

Other types of metadata

For example, Open Graph Data is a metadata protocol that Facebook invented to provide richer metadata for websites. In the MDN Web Docs sourcecode, you'll find this:

-
<meta property="og:image" content="https://developer.cdn.mozilla.net/static/img/opengraph-logo.dc4e08e2f6af.png">
+
<meta property="og:image" content="https://developer.mozilla.org/static/img/opengraph-logo.png">
 <meta property="og:description" content="The Mozilla Developer Network (MDN) provides
 information about Open Web technologies including HTML, CSS, and APIs for both Web sites
 and HTML5 Apps. It also documents Mozilla products, like Firefox OS.">
@@ -200,15 +200,15 @@ 

Adding custom icons to your site

There are lots of other icon types to consider these days as well. For example, you'll find this in the source code of the MDN Web Docs homepage:

<!-- third-generation iPad with high-resolution Retina display: -->
-<link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://developer.cdn.mozilla.net/static/img/favicon144.a6e4162070f4.png">
+<link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://developer.mozilla.org/static/img/favicon144.png">
 <!-- iPhone with high-resolution Retina display: -->
-<link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://developer.cdn.mozilla.net/static/img/favicon114.0e9fabd44f85.png">
+<link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://developer.mozilla.org/static/img/favicon114.png">
 <!-- first- and second-generation iPad: -->
-<link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://developer.cdn.mozilla.net/static/img/favicon72.8ff9d87c82a0.png">
+<link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://developer.mozilla.org/static/img/favicon72.png">
 <!-- non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
-<link rel="apple-touch-icon-precomposed" href="https://developer.cdn.mozilla.net/static/img/favicon57.a2490b9a2d76.png">
+<link rel="apple-touch-icon-precomposed" href="https://developer.mozilla.org/static/img/favicon57.png">
 <!-- basic favicon -->
-<link rel="shortcut icon" href="https://developer.cdn.mozilla.net/static/img/favicon32.e02854fdcf73.png">
+<link rel="shortcut icon" href="https://developer.mozilla.org/static/img/favicon32.png">

The comments explain what each icon is used for — these elements cover things like providing a nice high resolution icon to use when the website is saved to an iPad's home screen.

diff --git a/files/en-us/web/css/background-repeat/index.html b/files/en-us/web/css/background-repeat/index.html index 62669a0a7f0c2b5..6ff6b8fca6fef9d 100644 --- a/files/en-us/web/css/background-repeat/index.html +++ b/files/en-us/web/css/background-repeat/index.html @@ -179,7 +179,7 @@

CSS

/* Multiple images */ .seven { background-image: url(https://mdn.mozillademos.org/files/12005/starsolid.gif), - url(https://developer.cdn.mozilla.net/media/redesign/img/favicon32.png); + url(https://developer.mozilla.org/static/img/favicon32.png); background-repeat: repeat-x, repeat-y; height: 144px; diff --git a/files/en-us/web/html/element/menuitem/index.html b/files/en-us/web/html/element/menuitem/index.html index 8a96738466388dc..8abce1c1a92b30c 100644 --- a/files/en-us/web/html/element/menuitem/index.html +++ b/files/en-us/web/html/element/menuitem/index.html @@ -92,7 +92,7 @@

HTML

<menu type="context" id="popup-menu">   <menuitem type="checkbox" checked>Checkbox</menuitem>   <hr> -  <menuitem type="command" label="This command does nothing" icon="https://developer.cdn.mozilla.net/static/img/favicon144.png"> +  <menuitem type="command" label="This command does nothing" icon="https://developer.mozilla.org/static/img/favicon144.png">     Commands don't render their contents.   </menuitem>   <menuitem type="command" label="This command has javascript" onclick="alert('command clicked')"> diff --git a/files/en-us/web/http/basics_of_http/evolution_of_http/index.html b/files/en-us/web/http/basics_of_http/evolution_of_http/index.html index bca7282c83c343a..f88a01eecf313f0 100644 --- a/files/en-us/web/http/basics_of_http/evolution_of_http/index.html +++ b/files/en-us/web/http/basics_of_http/evolution_of_http/index.html @@ -118,7 +118,7 @@

HTTP/1.1 – The standardized pro (content) GET /static/img/header-background.png HTTP/1.1 -Host: developer.cdn.mozilla.net +Host: developer.mozilla.org User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:50.0) Gecko/20100101 Firefox/50.0 Accept: */* Accept-Language: en-US,en;q=0.5 diff --git a/files/en-us/web/http/headers/host/index.html b/files/en-us/web/http/headers/host/index.html index a1cf33aaaee096c..7fd79fbc7e9dcd5 100644 --- a/files/en-us/web/http/headers/host/index.html +++ b/files/en-us/web/http/headers/host/index.html @@ -47,7 +47,7 @@

Directives

Examples

-
Host: developer.cdn.mozilla.net
+
Host: developer.mozilla.org

Specifications