01
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>๋ฐฐ๊ฒฝ ์คํ์ผ</title>
<style>
body {
font-family: "๋ง์ ๊ณ ๋", ๋์;
}
.container {
width:500px;
padding:10px;
border:1px solid blue;
background: rgba(0, 0, 255, 0.2);
}
h1 {
font-size: 17px;
}
p {
font-size: 16px;
line-height: 25px;
}
</style>
</head>
<body>
<div class="container">
<h1>์น ๋์์ธ ํธ๋ ๋๋ฅผ ๋ฐ๋ผ์ก๋ ๋น๋ฒ ๋๊ณต๊ฐ!</h1>
<p>๊ทธ๋ํฝ ํ๋ก๊ทธ๋จ์ผ๋ก ์น ๋์์ธ ์์๋ฅผ ์ผ์ผ์ด ๋ง๋ค์ด ์น์ฌ์ดํธ๋ฅผ ์ ์ํ๋ ์๋๋ ์ง๋ฌ๋ค. ์ด์ ๋ชจ๋ฐ์ผ, ํ๋ธ๋ฆฟ, PC ๋ฑ ๋ฉํฐ ๋๋ฐ์ด์ค์ ํ ๋ฒ์ ์ ์ฉํ ์ ์๋ ์น ๋์์ธ ๋ฐฉ๋ฒ์ ์์์ผ ํ๋ค. ๋ฐ๋ก <b>์ฝ๋ฉ์ ์ด์ฉํ ์น ๋์์ธ</b>์ด๋ค. </p>
</div>
</body>
</html>
02
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>๋ฐฐ๊ฒฝ ์คํ์ผ</title>
<style>
body {
font-family: "๋ง์ ๊ณ ๋", ๋์;
}
.container {
width:500px;
padding:10px;
border:1px solid blue;
background:rgba(0,0,255,0.2);
}
.container:hover {
background: blue;
color: white;
}
h1 {
font-size: 17px;
}
p {
font-size: 16px;
line-height: 25px;
}
</style>
</head>
<body>
<div class="container">
<h1>์น ๋์์ธ ํธ๋ ๋๋ฅผ ๋ฐ๋ผ์ก๋ ๋น๋ฒ ๋๊ณต๊ฐ!</h1>
<p>๊ทธ๋ํฝ ํ๋ก๊ทธ๋จ์ผ๋ก ์น ๋์์ธ ์์๋ฅผ ์ผ์ผ์ด ๋ง๋ค์ด ์น์ฌ์ดํธ๋ฅผ ์ ์ํ๋ ์๋๋ ์ง๋ฌ๋ค. ์ด์ ๋ชจ๋ฐ์ผ, ํ๋ธ๋ฆฟ, PC ๋ฑ ๋ฉํฐ ๋๋ฐ์ด์ค์ ํ ๋ฒ์ ์ ์ฉํ ์ ์๋ ์น ๋์์ธ ๋ฐฉ๋ฒ์ ์์์ผ ํ๋ค. ๋ฐ๋ก <b>์ฝ๋ฉ์ ์ด์ฉํ ์น ๋์์ธ</b>์ด๋ค. </p>
</div>
</body>
</html>
03
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>๋ฐฐ๊ฒฝ ์คํ์ผ</title>
<style>
body {
font-family: "๋ง์ ๊ณ ๋", ๋์;
}
.container {
position: relative;
width: 600px;
height: 400px;
padding: 20px;
border: 1px solid #ccc;
background-image: url('images/apple-bg.jpg');
background-repeat: no-repeat;
background-size: cover;
}
.content {
position: absolute;
top: 300px;
width: 90%;
padding: 10px;
background-color: rgba(255, 255, 255, 0.5);
}
h1 {
font-size: 30px;
text-align: center;
}
p {
font-size: 16px;
line-height: 25px;
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<h1>ํ๋ฃจ ํ ์์ ์ฌ๊ณผ๋ ์์ฌ๋ฅผ ๋ฉ๋ฆฌ ํ๋ค</h1>
</div>
</div>
</body>
</html>
< ์ฐธ๊ณ >
Do it! HTML5+CSS3 ์น ํ์ค์ ์ ์
โป ํด๋น ๊ธ์ ์ต๋ ๋ชฉ์ ์ผ๋ก ์์ฑ๋ ๊ธ์ ๋๋ค โป
๋ฐ์ํ
๋๊ธ