1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

HTML5の書き方_2(リンクの貼り方)

Last updated at Posted at 2018-02-07

1.基本の書き方

link.html
<a href="[url]">[リンク名]</a>

・hrefはリンクを貼るための属性
・aタグはリンクを貼るために使うタグ

<見本>
Qiitaトレンド

・外部サイトなら

https://[ドメイン名]/[ファイル名].html

・内部サイトかつ表示元と同じフォルダ階層なら

./[ファイル名].html

・内部サイトかつ表示元から一つ階層をあがった場合

../[ファイル名].html
※一つ階層を上げるごとに「../」を付ける

応用編

・同ページ内で移動するリンクをつくる

Move.html
~~~テキスト~~~
<a name="tako">[リンク先]</a>
~~~テキスト~~~
<a href="#[link]">[Topへ戻る]</a>
~~~テキスト~~~

※ポイントはlinkの先頭に「#」を付ける

感想

リンクを上手く使えばいろいろできそう

ちなみにマークダウンでリンク貼る時は

[リンク名](url)

ハメられた

次へ

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?