aboutsummaryrefslogtreecommitdiff
path: root/files/ja/learn
diff options
context:
space:
mode:
authorrjohnson <rjohnson@mozilla.com>2021-03-14 14:55:27 -0700
committerrjohnson <rjohnson@mozilla.com>2021-03-14 14:55:27 -0700
commit3087cbfa47c646e702d9d301305f7a5b28431b52 (patch)
tree929594d9888a92cd2391f600da8570d4bc35d8c4 /files/ja/learn
parentc11c37f8d912b41ff343d703ba1148a0225eef8b (diff)
downloadtranslated-content-3087cbfa47c646e702d9d301305f7a5b28431b52.tar.gz
translated-content-3087cbfa47c646e702d9d301305f7a5b28431b52.tar.bz2
translated-content-3087cbfa47c646e702d9d301305f7a5b28431b52.zip
remove references to developer.cdn.mozilla.net
Diffstat (limited to 'files/ja/learn')
-rw-r--r--files/ja/learn/html/introduction_to_html/the_head_metadata_in_html/index.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/files/ja/learn/html/introduction_to_html/the_head_metadata_in_html/index.html b/files/ja/learn/html/introduction_to_html/the_head_metadata_in_html/index.html
index 15394f6e79..7fb1f1101f 100644
--- a/files/ja/learn/html/introduction_to_html/the_head_metadata_in_html/index.html
+++ b/files/ja/learn/html/introduction_to_html/the_head_metadata_in_html/index.html
@@ -165,7 +165,7 @@ started with developing web sites and applications."&gt;</pre>
<p>例えば、 <a href="http://ogp.me/">Open Graph Data</a> は Facebook が開発した、ウェブサイトに豊富なメタデータを与えるメタデータプロトコルです。 MDN Web Docs のソースコードでは、次のようなものがあります。</p>
-<pre class="brush: html notranslate">&lt;meta property="og:image" content="https://developer.cdn.mozilla.net/static/img/opengraph-logo.dc4e08e2f6af.png"&gt;
+<pre class="brush: html notranslate">&lt;meta property="og:image" content="https://developer.mozilla.org/static/img/opengraph-logo.png"&gt;
&lt;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."&gt;
@@ -199,15 +199,15 @@ and HTML5 Apps. It also documents Mozilla products, like Firefox OS."&gt;
<p>最近では考慮するべきアイコンの種類がほかにもたくさんあります。例えば、 MDN Web Docs ホームページのソースコードには以下の行があります。</p>
<pre class="brush: html notranslate">&lt;!-- third-generation iPad with high-resolution Retina display: --&gt;
-&lt;link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://developer.cdn.mozilla.net/static/img/favicon144.a6e4162070f4.png"&gt;
+&lt;link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://developer.mozilla.org/static/img/favicon144.png"&gt;
&lt;!-- iPhone with high-resolution Retina display: --&gt;
-&lt;link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://developer.cdn.mozilla.net/static/img/favicon114.0e9fabd44f85.png"&gt;
+&lt;link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://developer.mozilla.org/static/img/favicon114.png"&gt;
&lt;!-- first- and second-generation iPad: --&gt;
-&lt;link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://developer.cdn.mozilla.net/static/img/favicon72.8ff9d87c82a0.png"&gt;
+&lt;link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://developer.mozilla.org/static/img/favicon72.png"&gt;
&lt;!-- non-Retina iPhone, iPod Touch, and Android 2.1+ devices: --&gt;
-&lt;link rel="apple-touch-icon-precomposed" href="https://developer.cdn.mozilla.net/static/img/favicon57.a2490b9a2d76.png"&gt;
+&lt;link rel="apple-touch-icon-precomposed" href="https://developer.mozilla.org/static/img/favicon57.png"&gt;
&lt;!-- basic favicon --&gt;
-&lt;link rel="shortcut icon" href="https://developer.cdn.mozilla.net/static/img/favicon32.e02854fdcf73.png"&gt;</pre>
+&lt;link rel="shortcut icon" href="https://developer.mozilla.org/static/img/favicon32.png"&gt;</pre>
<p>コメントはそれぞれのアイコンの用途を説明しています。 — この要素は、ウェブサイトが iPad のホーム画面に保存された時のすばらしい高解像度なアイコンの提供といったことをカバーしています。</p>