.Net Project/CSS 2.0
01장 StyleSeetStart
Magic_kit
2009. 7. 27. 14:11
반응형
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>StyleSeetstart</title>
<!--타입이라는 속성은 생략 가능-->
<style type = "text/css"">
div{ font-size:9pt; color:Blue; font-family:Verdana;}
</style>
</head>
<body>
<div>
Hello~!<br />
</div>
</body>
</html>
반응형