-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2.html
More file actions
22 lines (19 loc) · 1.66 KB
/
2.html
File metadata and controls
22 lines (19 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html> <!html로 쓰여짐>
<head> <!본문을 설명하는 head 부분>
<title>WEB1 - CSS</title> <!title로 웹의 이름을 결정>
<meta charset="utf-8"> <!utf-8의 형식으로 웹페이지를 읽음>
</head>
<body> <!본문을 나타내는 body 부분>
<h1><a href="index.html" target="_blank">WEB</a></h1>
<ol> <!order list(순서가 있는 리스트) , ul = unorder list>
<li><a href="1.html" target="_blank">HTML</a></li> <!list를 나타냄>
<li><a href="2.html" target="_blank">CSS</a></li>
<li><a href="3.html" target="_blank">JavaScript</a></li>
</ol>
<h2>CSS이란 무엇인가?</h2> <!h1으로 글자의 크기>
<p><!p는 하나의 단락을 의미><a href="https://www.w3.org/Style/CSS/specs.en.html" target="_blank" title="CSS specification">Cascading Style Sheets (CSS)</a> is a style sheet language used for describing the presentation of a document written in a markup language such as HTML. CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript.</p>
<img src="CSS.png" width="15%"> <!img source로 사진 불러오기>
<p style="margin-top:40px;">CSS is 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>
</body>
</html>