본문 바로가기
아이들의 교육/HTML

[css study] The color of this writing is red.

by 섹시맘1004 2019. 7. 27.
반응형

Yangdong Folk Village, Gyeongju, designated by UNESCO

 

[css study] The color of this writing is red.

<html>

 <head>

  <style>

   body {
   background-color: lightblue;
   }​​

 

h1 {
  color: red;
  text-align: center;
}
h2 {
  color: orange;
  text-align: center;
}
h3 {
  color: yellow;
  text-align: center;
}
h4 {
  color: green;
  text-align: center;
}
h5 {
  color: blue;
  text-align: center;
}
h6 {
  color: Indigo;
  text-align: center;
}

 

p1 {
  font-family: verdana;
  font-size: 20px;
}
p2 {
  font-family: verdana;
  font-size: 30px;
}
p3 {
  font-family: verdana;
  font-size: 40px;
}
p4 {
  font-family: verdana;
  font-size: 50px;
}
p5 {
  font-family: verdana;
  font-size: 60px;
}

 

 </style>

</head>

<body>

<h1>The color of this writing is red.</h1>

<h2>The color of this writing is orange.</h2>

<h3>The color of this writing is yellow.</h3>

<h4>The color of this writing is green.</h4>

<h5>The color of this writing is blue.</h5>

<h6>The color of this writing is Indigo.</h6>

<br><br>

<p1>The font size is 20 pixel.</p1><br>

<p2>The font size is 30 pixel.</p2><br>

<p3>The font size is 40 pixel.</p3><br>

<p4>The font size is 50 pixel.</p4><br>

<p5>The font size is 60 pixel.</p5><br>

</body>

</html>

 

font.html
0.00MB

Download html file above

 

 

Applying the html file above!!!


Move Site

Click Go to above site and paste the html file above and click "RUN".

반응형