c o d i n g . . ๐Ÿ‰/HTML & CSS

[์ƒํ™œ์ฝ”๋”ฉ] ์›น ์• ํ”Œ๋ฆฌ์ผ€์ด์…˜ ๋งŒ๋“ค๊ธฐ(5): CSS ์‹ค์Šต

H J 2021. 2. 1. 07:46

์ „์— ๋งŒ๋“ค์—ˆ๋˜ html ํŒŒ์ผ์— ๋””์ž์ธ์„ ๋”ํ•ด๋ณด์•˜๋‹ค

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>๊ฐœ๊ฐ•ํ•˜๊ธฐ ์ „ ํ•  ์ผ</title>
	<style media="screen">
		header{
			border-bottom: 1px solid gray;
			padding: 20px
		}
		nav{
			border-right: 1px solid gray;
			width: 200px;
			float: left;
			height: 600px;
		}
		article{
			float:left;
			padding: 20px;
		}
		h2 {
			color: green;
		}
	</style>
</head>
<body>
	<header>
		<a href="http://localhost/"><h1>์›น ํ”„๋กœ๊ทธ๋ž˜๋ฐ ๊ณต๋ถ€</h1></a>
	</header>
	<nav>
		<ul>
			<li>html</li>
			<ol>
				<a href="http://localhost/2021.01_pr/page_html_theory.html"><li>html ์ด๋ก </li></a>
				<a href="http://localhost/2021.01_pr/page_html_practice.html"><li>html ์‹ค์Šต</li></a>
			</ol>
			<li>css</li>
			<ol>
				<a href="http://localhost/2021.01_pr/page_css_theory.html"><li>css ์ด๋ก </li></a>
				<a href="http://localhost/2021.01_pr/page_css_practice.html"><li>css ์‹ค์Šต</li></a>
			</ol>
		</ul>
	</nav>
</body>
</html>

์จ”์ž”

๊ทธ! ๋Ÿฐ! ๋ฐ!!!

 

์ง€๊ธˆ์€ ๊ฐ๊ฐ์˜ ํŒŒ์ผ๋งˆ๋‹ค css๊ฐ€ ๋”ฐ๋กœ ์ €์žฅ๋˜์–ด์žˆ๋Š” ์ƒํƒœ์ด๋‹ค

 

์ด๋•Œ ํ•˜๋‚˜์˜ css ํŒŒ์ผ์„ ๋กœ๋“œํ•ด์„œ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋Š” ๋ฐฉ๋ฒ•์ด ์žˆ๋‹ค!!

 

.css๋กœ ํŒŒ์ผ ํ•˜๋‚˜๋ฅผ ๋งŒ๋“ค๊ณ  style ๋‚ด์˜ css ์†์„ฑ๋“ค์„ ์ €์žฅํ•ด์ค€๋‹ค

 

๊ทธ๋ฆฌ๊ณ  html์˜ style ๋ถ€๋ถ„์„ ๋งํฌ๋กœ ๋Œ€์‹ ํ•ด์ฃผ๋ฉด ์™„์„ฑ!!

	<link rel="stylesheet" type="text/css" href="http://localhost/style.css">

์ € ๊ฐ€์šด๋ฐ ๋ถ€๋ถ„์˜ type์€ ์™œ ์“ฐ๋Š”์ง€ ์•„์ง์€ ๋ชจ๋ฅด๊ฒ ๋‹ค(rel๊ณผ href ๋ถ€๋ถ„์€ link๋ฅผ ์นœ ํ›„ ์—”ํ„ฐ๋ฅผ ๋ˆŒ๋Ÿฌ์ฃผ๋ฉด ์ž๋™์œผ๋กœ ๋‚˜์˜จ๋‹ค ใ…Žใ…ใ…Ž)

 

๊ทธ๋ž˜์„œ index.html์˜ ์™„์„ฑ ์ฝ”๋“œ๋Š” ์•„๋ž˜์™€ ๊ฐ™๋‹ค

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>๊ฐœ๊ฐ•ํ•˜๊ธฐ ์ „ ํ•  ์ผ</title>
	<link rel="stylesheet" type="text/css" href="http://localhost/style.css">
</head>
<body>
	<header>
		<a href="http://localhost/"><h1>์›น ํ”„๋กœ๊ทธ๋ž˜๋ฐ ๊ณต๋ถ€</h1></a>
	</header>
	<nav>
		<ul>
			<li>html</li>
			<ol>
				<a href="http://localhost/2021.01_pr/page_html_theory.html"><li>html ์ด๋ก </li></a>
				<a href="http://localhost/2021.01_pr/page_html_practice.html"><li>html ์‹ค์Šต</li></a>
			</ol>
			<li>css</li>
			<ol>
				<a href="http://localhost/2021.01_pr/page_css_theory.html"><li>css ์ด๋ก </li></a>
				<a href="http://localhost/2021.01_pr/page_css_practice.html"><li>css ์‹ค์Šต</li></a>
			</ol>
		</ul>
	</nav>
</body>
</html>

 

๊ทธ๋Ÿผ ๊ฒฐ๊ณผ๋„ ๋งˆ์ฐฌ๊ฐ€์ง€์ด๋‹ค (์šฐํ—คํ—ค ์‹ ๊ธฐํ•ด)