0
0

More than 1 year has passed since last update.

HTML Part2

Last updated at Posted at 2023-02-10

リンクの貼り付け。

  • 例文

実際に、リンクを貼ってみた場合。

<a href="https://www.google.co.jp/?client=safari&channel=iphone_bm">This is a tag</a>

Googleの文字の部分だけにリンクの表示をさせる(入れ子)

<p>let's go to <a href="https://www.google.co.jp/?client=safari&channel=iphone_bm">Google</a> </p>
  • 応用(ネスト→入れ子)

sectionで挟んで、一つのグループを作る事ができる。こうして情報のまとまりを作ってあげる事で、機械的に優しくなる。

<section>
    <h1>ONE PIECE</h1>
    <p>This is the super excited Manga in japan.....</p>
    <p>Official web page is <a href="https://one-piece.com/">here</a></p>
</section>
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