본문 바로가기

HTML5 tag 기본태그

HTML5 class 클래스 속성

HTML클래스class 속성


<!DOCTYPE html>
<html>
<head>
<style>
.cities {
  background-color: black;
  color: white;
  margin: 20px;
  padding: 20px;
} 
</style>
</head>
<body>

<div class="cities">
  <h2>London</h2>
  <p>London is the capital of England.</p>
</div>

<div class="cities">
  <h2>Paris</h2>
  <p>Paris is the capital of France.</p>
</div>

<div class="cities">
  <h2>Tokyo</h2>
  <p>Tokyo is the capital of Japan.</p>
</div>

</body>
</html>
-----------------------------------------

-------------------------------------

인라인 클래스

<!DOCTYPE html>
<html>
<head>
<style>
span.note {
  font-size: 120%;
  color: red;
}
</style>
</head>
<body>

<h1>My <span class="note">Important</span> Heading</h1>
<p>This is some <span class="note">important</span> text.</p>

</body>
</html>


'HTML5 tag 기본태그' 카테고리의 다른 글

HTML5 Iframe 태그  (0) 2019.07.11
HTML5 id 아이디 속성  (0) 2019.07.11
html5 블록, inline요소  (0) 2019.07.11
html 리스트 목록 태그  (0) 2019.07.11
HTML5 Images 이미지태그  (0) 2019.07.11