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書き方

Posted at

HTML書き方

  • HTMLファイルを作成
    テキストエディターで新しいファイルを作成し、拡張子を.htmlに設定

  • HTMLドキュメントの開始タグと終了タグを書く
    HTMLドキュメントを開始するときは、次の開始タグを使用

<!DOCTYPE html>
<html>

HTMLドキュメントを終了するには、次の終了タグを使用

</html>
  • ページのタイトルを設定
<head>
  <title>タイトル</title>
</head>
  • ページの本文を作成
    本文はbodyタグで囲まれる
<body>
  <h1>見出し</h1>
  <p>段落</p>
</body>
  • 画像を追加
<img src="画像のURL" alt="代替テキスト">

  • リンクを作成
<a href="リンク先のURL">リンクのテキスト</a>

  • リストを作成
<ul>
  <li>リスト項目1</li>
  <li>リスト項目2</li>
  <li>リスト項目3</li>
</ul>

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?