-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2.html
More file actions
28 lines (28 loc) · 1.43 KB
/
2.html
File metadata and controls
28 lines (28 loc) · 1.43 KB
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>WEB1 - CSS</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="./1.css" />
</head>
<body>
<h1><a href="index.html">WEB</a></h1>
<p>우선도: CSS 작성코드 < HTML에서의 디자인 코드</p>
<ol>
<li><a href="1.html">HTML</a></li>
<li><a href="2.html" style="color:black">CSS</a></li>
<li><a href="3.html" style="text-decoration:underline">JavaScript</a></li>
</ol>
<h2>CSS - html에서 디자인 영역을 빼온 것</h2>
<p>css등장 이유: 서로 분리하여 관리하는 게 더욱 효율적이라서 </p>
<p>
selector : 디자인으로 선정한 곳
declaration : 적용할 효과를 작성하는 영역
property : 적용할 효과 ex) color, text-decoration
value : 적용하는 값 ex) center, none...
</p>
<p>
Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation of a document written in a markup language. Although most often used to set the visual style of web pages and user interfaces written in HTML and XHTML, the language can be applied to any XML document, including plain XML, SVG and XUL, and is applicable to rendering in speech, or on other media. Along with HTML and JavaScript, CSS is a cornerstone technology used by most websites to create visually engaging webpages, user interfaces for web applications, and user interfaces for many mobile applications.
</p>
</body>
</html>