WEB.CSS

chapter03 : internal

GAWON 2023. 5. 18. 09:25
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
h1{
color: fuchsia;
background-color:lime;
}
.c-red{
color: red;
}
#c-blue{
color: blue;
}
</style>
</head>
<body>
<h1> 여기가 <h1> 태그</h1>
<h1> 여기가 <h1> 태그</h1>
<h1 class="c-red"> 여기가 <h1> 태그</h1>
<span class="c-red"> 여기가 span 태그</span>
<h1 id="c-blue"> 여기가 <h1> 태그</h1>
</body>
</html>