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学習メモ1

Posted at

これは、個人的備忘録です

例えば次のようなコードがあったとき

 <!DOCTYPE html>
 <html>
 <head>
 <title>Page Title</title>
 </head>
 <body>
 
 <h1>My First Heading</h1>
 <p>My first paragraph.</p>
 
 </body>
 </html>

<!DOCTYPE html>要素はドキュメントをHTML5のドキュメントとして定義する。
<html>要素はHTMLページ全体を構成するための土台のようなもの。(ルート要素)
<head>要素はHTMLページに関するメタ情報を含むもの
<title>はHTMLページのタイトルを決めるもの
<body>はドキュメントのbodyを定義するもので、すべての目に見えるコンテンツのコンテナである
<h1>は大見出しを定義するものである
<p>は改行定義するものである

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?