-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (17 loc) · 1.34 KB
/
index.html
File metadata and controls
20 lines (17 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html> <!html로 쓰여짐>
<head> <!본문을 설명하는 head 부분>
<title>WEB1 - index</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>WEB이란 무엇인가?</h2> <!h1으로 글자의 크기>
<p><!p는 하나의 단락을 의미>The World Wide Web (WWW), commonly known as the Web, is an information system where documents and other web resources are identified by Uniform Resource Locators (URLs, such as https://example.com/), which may be interlinked by hyperlinks, and are accessible over the Internet.[1][2] The resources of the Web are transferred via the Hypertext Transfer Protocol (HTTP), may be accessed by users by a software application called a web browser, and are published by a software application called a web server. The World Wide Web is not synonymous with the Internet, which pre-dated the Web in some form by over two decades and upon which technologies the Web is built.</p>
</body>
</html>