HTML
32일차//border, <div id = " ">, <style>
aesup
2021. 2. 25. 17:48
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 : 10px;
padding: 20px;
}
</style>
</head>
<body>
<div id = "demo">Hello CSS world</div>
</body>
</html>
728x90