diff options
author | A1lo <yin199909@aliyun.com> | 2022-03-19 03:51:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-19 03:51:33 +0800 |
commit | efad3dbdb62d1977c01b953a076bf699100b77e9 (patch) | |
tree | 1d6821621c5b23c66edf0be9771b23f9312171d3 /files/zh-tw/learn/html/introduction_to_html/creating_hyperlinks | |
parent | 2d67ce927bfd98fe4cd02d11c950b960945638b5 (diff) | |
download | translated-content-efad3dbdb62d1977c01b953a076bf699100b77e9.tar.gz translated-content-efad3dbdb62d1977c01b953a076bf699100b77e9.tar.bz2 translated-content-efad3dbdb62d1977c01b953a076bf699100b77e9.zip |
replace all `anch` marco in `zh-TW` (#4708)
* fix: resolve some incorrect anchors
* fix: resolve some incorrect anchors
* fix: resolve some incorrect anchors
Diffstat (limited to 'files/zh-tw/learn/html/introduction_to_html/creating_hyperlinks')
-rw-r--r-- | files/zh-tw/learn/html/introduction_to_html/creating_hyperlinks/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-tw/learn/html/introduction_to_html/creating_hyperlinks/index.html b/files/zh-tw/learn/html/introduction_to_html/creating_hyperlinks/index.html index 059cfa427c..fcab5b97a1 100644 --- a/files/zh-tw/learn/html/introduction_to_html/creating_hyperlinks/index.html +++ b/files/zh-tw/learn/html/introduction_to_html/creating_hyperlinks/index.html @@ -36,7 +36,7 @@ translation_of: Learn/HTML/Introduction_to_HTML/Creating_hyperlinks <h2 id="解析連結">解析連結</h2> -<p>一個基本的連結由 {{htmlelement("a")}} 元素包裹一段文字而成(當然也不一定要是文字,見下方的{{anch("區塊級連結")}}),同時,你需要將網路位址填入 {{htmlattrxref("href", "a")}} 屬性中,這個屬性有時也被叫做<strong>超文字參考(Hypertext Reference)</strong>或<strong>目標(target)</strong>。</p> +<p>一個基本的連結由 {{htmlelement("a")}} 元素包裹一段文字而成(當然也不一定要是文字,見下方的<a href="#區塊級連結block-level_links">區塊級連結</a>),同時,你需要將網路位址填入 {{htmlattrxref("href", "a")}} 屬性中,這個屬性有時也被叫做<strong>超文字參考(Hypertext Reference)</strong>或<strong>目標(target)</strong>。</p> <pre class="brush: html"><p>I'm creating a link to <a href="https://www.mozilla.org/en-US/">the Mozilla homepage</a>. |