7-4. CSS ๋ฐฐ๊ฒฝ ์ด๋ฏธ์ง ์ฐ์ต๋ฌธ์ 1,2,3
2021. 10. 14. 00:14ใHTML + CSS + JS
728x90
* ์ฐ์ต๋ฌธ์ 1
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>์ฐ์ต๋ฌธ์ 1</title>
<style>
h1 {
margin-top:50px;
font-size: 20px;
}
p {
font-size: 16px;
line-height: 25px;
}
body {
color: white;
background : url('/09/images/bg1.jpg') repeat-x left bottom fixed;
background-color : gray;
}
</style>
</head>
<body>
<h1>์น ๋์์ธ ํธ๋ ๋๋ฅผ ๋ฐ๋ผ์ก๋ ๋น๋ฒ ๋๊ณต๊ฐ!</h1>
<p>๊ทธ๋ํฝ ํ๋ก๊ทธ๋จ์ผ๋ก ์น ๋์์ธ ์์๋ฅผ ์ผ์ผ์ด ๋ง๋ค์ด ์น์ฌ์ดํธ๋ฅผ ์ ์ํ๋ ์๋๋ ์ง๋ฌ๋ค. ์ด์ ๋ชจ๋ฐ์ผ, ํ๋ธ๋ฆฟ, PC ๋ฑ ๋ฉํฐ ๋๋ฐ์ด์ค์ ํ ๋ฒ์ ์ ์ฉํ ์ ์๋ ์น ๋์์ธ ๋ฐฉ๋ฒ์ ์์์ผ ํ๋ค. ๋ฐ๋ก <b>์ฝ๋ฉ์ ์ด์ฉํ ์น ๋์์ธ</b>์ด๋ค. </p>
</body>
</html>
* ์ฐ์ต๋ฌธ์ 2
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UFT-8">
<title>์ฐ์ต๋ฌธ์ 2</title>
<style>
.container {
width:500px;
padding:10px;
border:1px solid #ccc;
}
h1 {
font-size: 17px;
}
p {
font-size: 16px;
line-height: 25px;
}
.container {
background-color: black;
color: white;
}
</style>
</head>
<body>
<div class="container">
<h1>์น ๋์์ธ ํธ๋ ๋๋ฅผ ๋ฐ๋ผ์ก๋ ๋น๋ฒ ๋๊ณต๊ฐ!</h1>
<p>๊ทธ๋ํฝ ํ๋ก๊ทธ๋จ์ผ๋ก ์น ๋์์ธ ์์๋ฅผ ์ผ์ผ์ด ๋ง๋ค์ด ์น์ฌ์ดํธ๋ฅผ ์ ์ํ๋ ์๋๋ ์ง๋ฌ๋ค. ์ด์ ๋ชจ๋ฐ์ผ, ํ๋ธ๋ฆฟ, PC ๋ฑ ๋ฉํฐ ๋๋ฐ์ด์ค์ ํ ๋ฒ์ ์ ์ฉํ ์ ์๋ ์น ๋์์ธ ๋ฐฉ๋ฒ์ ์์์ผ ํ๋ค. ๋ฐ๋ก <b>์ฝ๋ฉ์ ์ด์ฉํ ์น ๋์์ธ</b>์ด๋ค. </p>
</div>
</body>
</html>
* ์ฐ์ต๋ฌธ์ 3
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>์ฐ์ต๋ฌธ์ 3</title>
<style>
body {
background-color: #02233b;
}
#container{
margin:0 auto;
width:600px;
height:700px;
border:1px dotted gray;
padding:20px;
background-color: white;
background-image: url('/09/images/mic.png') ;
background-repeat: no-repeat;
background-position: right bottom;
}
img {
margin:30px 10px 30px 180px;
}
h1 {
text-align:center;
padding:20px;
background-color: #004344;
color: white;
}
h2 {
text-align:center;
font-style:italic;
margin-bottom:50px;
}
h3 {
color:#cf3b00;
}
ul{
margin:20px;
list-style-type:none;
}
li {
line-height:30px;
}
</style>
</head>
<body>
<div id="container">
<h1>๋ํ์ธ๋ก ์ฌ ์์ต๊ธฐ์ ๋ชจ์ง</h1>
<h2>์ ์
์ ์ฌ๋ฌ๋ถ์ ๊ธฐ๋ค๋ฆฝ๋๋ค</h2>
<article>
<h3>๋ชจ์ง๋ถ์ผ</h3>
<ul>
<li>์๋์ด์(0๋ช
) : ํ๋ด ์์์ ๋ผ๋์ค ๋ฐฉ์ก์ผ๋ก ๋ณด๋</li>
<li>์คํ๋์ผํ๋ก๋์(0๋ช
) : ๋ผ๋์ค ๋ฐฉ์ก ๊ธฐํ, ์ ์</li>
<li>์์ง๋์ด(0๋ช
) : ๋ผ๋์ค ๋ฐฉ์ก ๋
น์ ๋ฐ ํธ์ง </li>
</ul>
<h3>ํํ</h3>
<ul>
<li>์์ต๊ธฐ์ ํ๋ ์ค ์์ ์ ํ๋๋น ์ง๊ธ</li>
<li>์ ๊ธฐ์๋ก ์ง๊ธํ๋ฉด ์ฅํ๊ธ ์ง๊ธ</li>
</ul>
</article>
</div>
</body>
</html>
728x90