-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.html
More file actions
55 lines (50 loc) · 1.97 KB
/
1.html
File metadata and controls
55 lines (50 loc) · 1.97 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!doctype html>
<html>
<!--본문설명-->
<head>
<title>WEB1 - HTML</title>
<meta charset="utf-8">
</head>
<body>
<!--본문-->
<<h1><a href="index.html">WEB</a></h1>
<ul><!--Unordered List-->
<li>1. HTML</li>
<li>2. CSS</li>
<li>3. JavaScript</li>
</ul>
<ul>
<li>egoing</li>
<li>k8805</li>
<li>youbin</li>
</ul><!--<li>의 부모 : 어디서부터 어디까지가 연관된지를 알려주는 부모태그 무조건 가지고 있음-->
<ol><!--Orderd List : 앞에 숫자 넣어주기-->
<li><a href="1.html">HTML</a></li><!--list-->
<li><a href="2.html">CSS</a></li>
<li><a href="3.html">JavaScript</a></li>
</ol>
<h2>HTML이란 무엇인가?</h2>
<!--링크-->
<a href="https://www.naver.com/"
target="-blank" title="html5 speicification">Hypertext Markup Language (HTML)</a> is the standard markup language
<!--target : 새탭이 열리게
title : 부과 -->
for <strong>creating <u>web</u> pages</strong> and web applocations.
Web browsers receive HTML documents from a web server or from local storage
and render them into multimedia web pages.
HTML describes the structure of a web page semantically
and originally included cues for the appearance of the document.
<br><br><br>HTML elements are the building blocks of HTML pages.
<p>With HTML constructs, images and other objects, such as interactive forms,
may be embedded into the rendered page.</p> <p style="margin-top:40px;">It provides a means to create structured documents
by denoting structural semantics for text such as headings, paragraphs, lists,
links, quotes and other items.</p>
<!-- br == p
어디서부터 어디까지가 같은 단락이다 알려줌-->
<img src="coding.jpg" width="450"><br> <!--속성통해 더 많은 의미 부과-->
HTML elements are delineated by tags, written using angle brackets.
<h1>W3c</h1>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
</body>
</html>