-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.html
More file actions
22 lines (19 loc) · 1.68 KB
/
1.html
File metadata and controls
22 lines (19 loc) · 1.68 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 - html</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>HTML이란 무엇인가?</h2> <!h1으로 글자의 크기>
<p><!p는 하나의 단락을 의미><a href="https://www.w3.org/TR/html52/" target="_blank" title="html5 specification">The HyperText Markup Language</a>, or HTML is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript.</p>
<img src="7648.png" width="70%"> <!img source로 사진 불러오기>
<p style="margin-top:40px;">Web browsers receive HTML documents from a web server or from local storage and render the documents into multimedia web pages. HTML describes the structure of a web page semantically and originally included cues for the appearance of the document. HTML elements are the building blocks of HTML pages. With HTML constructs, images and other objects such as interactive forms may be embedded into the rendered page. HTML provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items.</p>
</body>
</html>