diff options
author | TagawaHirotaka <mariobaske@i.softbank.jp> | 2021-05-22 22:18:03 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-22 22:18:03 +0900 |
commit | bbed76a59817353d0a2764f6b3d87afddc6e458a (patch) | |
tree | e931b46484c3eb878348713fc04587af62daa540 /files/ja/web/html | |
parent | 1ca5575824fdfefa24cf1accad7529ebc5aaf1fe (diff) | |
download | translated-content-bbed76a59817353d0a2764f6b3d87afddc6e458a.tar.gz translated-content-bbed76a59817353d0a2764f6b3d87afddc6e458a.tar.bz2 translated-content-bbed76a59817353d0a2764f6b3d87afddc6e458a.zip |
Fix: iframe (#953)
Diffstat (limited to 'files/ja/web/html')
-rw-r--r-- | files/ja/web/html/element/iframe/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ja/web/html/element/iframe/index.html b/files/ja/web/html/element/iframe/index.html index b2e807bea0..79fc72d831 100644 --- a/files/ja/web/html/element/iframe/index.html +++ b/files/ja/web/html/element/iframe/index.html @@ -196,12 +196,12 @@ translation_of: Web/HTML/Element/iframe <h3 id="Example1" name="Example1">シンプルな <iframe></h3> -<p><code><iframe></code> の例です。フレームを作成した後に、ユーザーがボタンをクリックすると、タイトルをアラートで表示します。</p> +<p>この例では、<a href="https://example.org">https://example.org</a>のページを <code><iframe></code> で埋め込みます。</p> <h4 id="HTML">HTML</h4> <div id="htmlOutputWrapper"> -<pre class="brush: html notranslate"><iframe src="https://mdn-samples.mozilla.org/snippets/html/iframe-simple-contents.html" +<pre class="brush: html notranslate"><iframe src="https://example.org" title="iframe Example 1" width="400" height="300"> </iframe></pre> </div> |