-
Notifications
You must be signed in to change notification settings - Fork 0
/
2.html
26 lines (24 loc) · 2 KB
/
2.html
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
<!doctype HTML>
<html>
<!-- 헤드 부분 -->
<head>
<title>WEB1 - 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>
<!-- 본문 -->
<h2>CSS란 무엇인가?</h2>
<p><a href="https://www.w3.org/TR/CSS2/" target="_blank" title="CSS specification">Cascading Style Sheets (CSS)</a> is a style sheet language used for describing the presentation of a docis designed to enable the separation of presentation and content, including layout, colors, and fonts. This separation can improve content accessibility, provide more flexibility and control in the specification of presentation characteristics, enable multiple web pages to share formatting by specifying the relevant CSS in a separate .css file which reduces complexity and repetition in the structural content as well as enabling the .css file to be cached to improve the page load speed between the pages that share the file and its formatting.</p>
<img src="coding.jpg" width="50%" height="50%">
<p>Separation of formatting and content also makes it feasible to present the same markup page in different styles for different rendering methods, such as on-screen, in print, by voice (via speech-based browser or screen reader), and on Braille-based tactile devices. CSS also has rules for alternate formatting if the content is accessed on a mobile device.</p>
<p>The name cascading comes from the specified priority scheme to determine which style rule applies if more than one rule matches a particular element. This cascading priority scheme is predictable.</p>
<p>The CSS specifications are maintained by the World Wide Web Consortium (W3C). Internet media type (MIME type) text/css is registered for use with CSS by RFC 2318 (March 1998). The W3C operates a free CSS validation service for CSS documents.</p>
</body>
</html>