0
1

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.

リンク

Last updated at Posted at 2018-12-01

#リンクを挿入するには?
下記のように記載する

html
<a href="〜〜.com">サイト名表記</a>

##クラス指定
・クラス指定可能
・hrefのすぐ後ろにclass="クラス名"を記入してあげる

html
<a href="〜〜.com" class="クラス名">サイト名表記</a>

##target指定
・targetを設定してあげないとリンク先のページを開くことができない
・主に使われるのは下記2種類である

コード 内容
_brank   新しいウィンドウを増やしてページを閲覧する
new ウィンドウを増やし続けることなく一つ増やしたウィンドウで新しいページを開く

##ページの途中へのリンク
・IDにしか飛べない
・リンク先のHTMLに記入が必要

html
<h1 id="ID名">リンク先</h1>

・リンク元のHTMLには以下のように記載
・#allが以下に相当する

html
<a href="#ID名">リンク先</a>

###ヌルリンク
何も指定していないリンクのこと

html
<a href="#">サイト名</a>

###デフォルトでつく下の線を消したい場合

css
a {text-decoration: none;}

※none...無しにする

###ホールドの色変え

css
a:hover{color:指定したい色;}

※color...色

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?