0
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 1 year has passed since last update.

【HTML】リンクの貼り方

Last updated at Posted at 2022-10-03

HTMLにおけるリンクの貼り方

それに関連するプラスアルファの作業

リンクの貼り方
HTMLにaタグを使用する

 <a href="https://qiita.com/galves>

aタグを使って、別タブ表示を実現するときの書き方

target="_blank" と rel="noopener noreferrer" をつける

 <a href="https://qiita.com/galves"  target="_blank" rel="noopener noreferrer">

リンクのアンダーラインを消す方法

aタグにCSSでtext-decoration:noneを記載する

.a {
  text-decoration: none;
}
0
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
0
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?