-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.html
39 lines (31 loc) · 2.03 KB
/
1.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
27
28
29
30
31
32
33
34
35
36
37
38
39
<!doctype html>
<html>
<head>
<title>WEB1 - html</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>HTML이란 무엇인가?</h2>
<p>웹을 만든 팀버너스리와 유럽입자물리연구소는 웹에 대한 일체의 저작권을 내려놓았습니다. 그 덕에 웹은 누구도 주인이 아니기 때문에, 모두가 주인입니다.
빨리 가려면 혼자가고, 오래가려면 같이 가라는 말이 있습니다. 웹은 빨리 발전하지 못했지만, 오랫동안 발전했고, 오랫동안 발전할 것입니다.
생활코딩은 WEBn이 웹을 닮은 수업이 되기를 바랬습니다. 그래서 WEB1을 저작권이 없는 수업으로 만들었습니다.</p>
<a href="https://bitmex2.modoo.at"><img src="coin.jpg" width="300"></a>
비용 없이 공부할 수 있고,<br>
허락 없이 수정할 수 있고,<br>
계약 없이 배포할 수 있습니다.<br>
WEB1을 기반으로 다양한 사람들이 공부하고, 또 각자의 개성에 따라서 수업이 만들어지기를 기대하고 있습니다.
이런 일이 일어날 수 있도록 많은 분들이 도움을 주셨습니다. 후원자들을 기억해주세요.
Definition and Usage</p style>
The <meta> tag defines metadata about an HTML document. <br>Metadata is data (information) about data.
<meta> tags always go inside the <head> element, and are typically used to specify character set, page description, keywords, author of the document, and viewport settings.
Metadata will not be displayed on the page, but is machine parsable.<br><br><br>
<p>Metadata is used by browsers (how to display content or reload page), search engines (keywords), and other web services.</p>
There is a method to let web designers take control over the viewport (the user's visible area of a web page), through the <meta> tag (See "Setting The Viewport" example below).
</body>
</html>