-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML example.html
More file actions
38 lines (27 loc) · 2.73 KB
/
Copy pathHTML example.html
File metadata and controls
38 lines (27 loc) · 2.73 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
<title>About HTML</title>
<meta charset="EUC-KR"> <!-- 이 문서는 EUC-KR 방식으로 만들어졌으니, utf-kr로 열어야 한다는걸 알려줌. 보통이라면 utf-8이겠지만... 난 그냥 해보고 싶었음. -->
<h1>HTML(<b style="color: darkorchid;">H</b>yper<b style="color: darkorchid;">T</b>ext <b style="color: darkorchid;">M</b>arkup <b style="color: darkorchid;">L</b>anguage)</h1>
<ol>Ordered Lists<br>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ol>
<head>This Is Not A Programming Language!!<br>이것은 프로그래밍 언어가 아닙니다!!</head>
<div>
<p st yle = "margin-top: 45px";>Hypertext Markup Language (HTML) is the standard markup language for <strong>creating <u>web</u> pages</strong> and web applications.<br>
HTML(Hypertext Markup Language)은 웹 페이지 및 웹 응용 프로그램을 만들기 위한 표준 마크업 언어입니다.<br><br>
Web browsers receive HTML documents from a web server or from local storage and render them into multimedia web pages.<br>
웹 브라우저는 웹 서버 또는 로컬 저장소에서 HTML 문서를 수신하여 멀티미디어 웹 페이지로 렌더링합니다.<br><br>
HTML describes the structure of a web page semantically and originally included cues for the appearance of the document.<br>
HTML은 웹 페이지의 구조를 의미론적으로 설명하며 원래는 문서 모양에 대한 단서를 포함했습니다.<br><br></p>
<img src="https://s3-ap-northeast-2.amazonaws.com/opentutorials-user-file/module/3135/7648.png"> <!-- 절대경로 넣음 -->
<p style = "margin-top: 45px";>HTML elements are the building blocks of HTML pages.<br>
HTML 요소는 HTML 페이지의 빌딩 블록입니다.<br><br>
With HTML constructs, images and other objects, such as interactive forms, may be embedded into the rendered page.<br>
HTML 구문을 사용하면 대화형 양식과 같은 이미지 및 기타 개체가 렌더링된 페이지에 포함될 수 있습니다.<br><br>
It provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items.<br>
제목, 단락, 목록, 링크, 인용문 및 기타 항목과 같은 텍스트에 대한 구조적 의미를 표시하여 구조화된 문서를 만드는 수단을 제공합니다.<br><br>
HTML elements are delineated by tags, written using angle brackets.<br>
HTML 요소는 꺾쇠 괄호를 사용하여 작성된 태그로 표시됩니다.<br><br></p>
<p>참고로, 한 번 이상 space bar로 공간을 늘려도 한 칸만 띄워집니다.<br>
| |지금 이거 코드상으로는 10칸 띄운건데, 화면상으로는 1칸만 띄워져 있을거임.</p></div>