Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter03 : internal 본문

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>

'WEB.CSS' 카테고리의 다른 글

chapter06 : background  (0) 2023.05.18
chapter05 : background  (0) 2023.05.18
chapter04 : external  (0) 2023.05.18
chapter02 : inline  (0) 2023.05.18
chapter01 : overview  (0) 2023.05.18