μμ
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>μμ μ€νμΌ</title>
<style>
/* νκ·Έ μ νμ */
h1 { color: deepskyblue; }
h3 { color: blue; }
.box {
background-color: orange;
border: 2px solid red;
padding: 40px 20px;
}
.font {
color: brown;
font-weight: bold;
font-size: 14px;
}
.site {
color: black;
text-decoration: none;
}
a {
color: inherit; /* μμμμ μ€νμΌ μμ */
text-decoration: inherit;
}
</style>
</head>
<body>
<h1>μμ μ€νμΌ</h1>
<h3>λ°°κ²½μ</h3>
<div class="box">
BOX
</div>
<h3>ν°νΈ μμ</h3>
<p class="font">
ν°νΈ μμμ μ μ©ν΄λ΄
λλ€.
</p>
<p class="site">
<a href="https://www.μν΄.com">www.μν΄.com </a>
</p>
</body>
</html>
HTML
볡μ¬