๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ

๐ŸŒ HTML\CSS

div์ด์šฉ internal๋ฐฉ์‹ ์ ์šฉ ์˜ˆ์ œ - 1

by Meteora_ 2021. 2. 25.
728x90

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>

<style type="text/css">
#demo{
	background-color: blue;
	color: #ffffff;
	text-align : center;
	border-style:double;
	border-color:#ffff00;
	font-family:"MS PGothic";
	font-style:italic;
	font-size:24pt;
	margin: 0px;
	padding:20px;
}

</style>

</head>
<body>

<div id="demo">Hello CSS world</div>

</body>
</html>

 

๋Œ“๊ธ€