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

初めてのプログラミング

Last updated at Posted at 2023-02-09

HTMLの基本的な操作

2月10日からプログラミングを始めたので、忘備録として書いていきます。また自己成長の為に、アウトプットも兼ねて記事を作っていくので宜しくお願いします。

見出しを付ける

<h1>リンゴ</h1>

上記のように見出しを作る。また、数字を大きくしていくと、見出しが小さくなる。最大は6まで。

段落を作成する

<h1>リンゴ</h1>
<p>リンゴアメが食べたい</p>

pはparagraph(段落)の略になる。h2要素やp要素で囲んだテキストは改行されて表示される。

image.png

コメントの書き方

<!--リンゴアメが食べたいと書く-->

囲んだテキストのことを「コメント」と呼ぶ。
コメントとして書かれたテキストはブラウザには表示されないので、メモとして使うことができる。

1
0
1

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