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 3 years have passed since last update.

htmlどれがタグでどれが要素か、各名称

Posted at

htmlのタグとか要素、cssのプロパティー、プロパティーの値とか何が何かよくわからなくごちゃごちゃになると思うのでまとめました。

要素

//要素
<head>
 <meta>
 <title>
 <link>
 <style>
</head>

<body>
 <footer>
 <header>
 <main>	
 <nav>
 <section>

タグ

href
class

など要素の次に書くのをタグという

<a href="`"></a>
<div class="#"></div>

フッタータグは

<footer>
 <small>
 @ 2020 example.com
</small>

セレクター、プロパティ、規則セット

セレクター
プロパティー: プロパティー値;

div {
coloer: red;
font-size: 80px;
右左2つセットで宣言
3つセットで規則セット

div {
 color: red;
 font-size: 80px;
}
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?