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?

HTML #2

Posted at

1 HTMLの基本

HTMLは、基本的にタグというもので構成されています。
例えば

<html>,<title>,<h1>,<a>

などです。
これらのタグを使うことによってページにタイトルや見出しを付けることができます。

2 書いてみる

例えばページにタイトルと見出しを付けて、文章を書きたいなら

<html>
<title>
HAZE
</title>
<h1>
HAZE
</h1>
<a>
frost
</a>
</html>

このようなコードを書くことによって以下の画像のような感じになるScreenshot 2024-10-29 10.29.22 AM.png

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?