-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2.html
More file actions
28 lines (26 loc) · 900 Bytes
/
2.html
File metadata and controls
28 lines (26 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!doctype html>
<html>
<head>
<title>WEB2 - css</title>
<meta charset="utf-8">
</head>
<body>
<h1><a href="index.html">WEB</a></h1>
<ol>
<li><a href="1.html">HTML</a></li>
<li><a href="2.html">CSS</a></li>
<li><a href="3.html">JavaScript</a></li>
</ol>
<ol>
<li>Tom</li>
<li>Jerry</li>
<li>Ashie</li>
</ol>
<h2><u>CSS란 무엇인가?</u></h2>
<img src="css.png"><br>
<strong><a href="https://en.wikipedia.org/wiki/CSS"
target="_blank" title="CSS Wiki">Cascading Style Sheet</a></strong>
<p>
HTML 등의 마크업 언어로 작성된 문서가 실제로 웹사이트에 표현되는 방법을 정해주는 언어.
CSS의 C가 Cascading의 약자인데, 이는 상위 요소의 스타일 속성을 자손 요소들에게 상속시켜주는 모습이
<br>DOM 트리구조에서 마치 폭포수처럼 내려가는 모습을 닮았기 때문이다.</p>