7-4. CSS ๋ฐฐ๊ฒฝ ์ด๋ฏธ์ง€ ์—ฐ์Šต๋ฌธ์ œ 1,2,3

2021. 10. 14. 00:14ใ†HTML + CSS + JS

728x90

* ์—ฐ์Šต๋ฌธ์ œ 1

์—ฐ์Šต๋ฌธ์ œ 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