-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.html
More file actions
50 lines (48 loc) ยท 2.05 KB
/
Copy pathpractice.html
File metadata and controls
50 lines (48 loc) ยท 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ํ
์คํธ 1.html</title>
</head>
<body>
<h1>์ค๋ ์ ์ฌ ๋ญ ๋จน์ฃ ?</h1>
<h2>์ค๋ ์ ์ฌ ๋ญ ๋จน์ฃ ?</h2>
<h3>์ค๋ ์ ์ฌ ๋ญ ๋จน์ฃ ?</h3>
<h4>์ค๋ ์ ์ฌ ๋ญ ๋จน์ฃ ?</h4>
<h5>์ค๋ ์ ์ฌ ๋ญ ๋จน์ฃ ?</h5>
<h6>์ค๋ ์ ์ฌ ๋ญ ๋จน์ฃ ?</h6>
<p><strong>์๊ฐ๋๋ ๋ฉ๋ด๊ฐ ์์ง ์์</strong></p>
<p>์๊ฐ๋๋ ๋ฉ๋ด๊ฐ ์์ง ์์</p>
<u>web</u>
<h1>HTML</h1>
Hypertext Markup Language(HTML) is the standard markup language for <strong>creating <u>web</u>
pages</strong> and web applications.<br>
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.<br>
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. HTML elements are delineated by tags, written using angle brackets.
์ด์ด์ ๋ด์ฉ์ ์์ฑํด๋ณด๊ธฐ
<p style="margin-bottom: 100px;">์ด์ด์ ๋ด์ฉ์ ์์ฑํด๋ณด๊ธฐ, block: ํํ ์ ์ฒด๋ฅผ ์ฐจ์ง</p>
<span>์ถ๊ฐ๋ด์ฉ</span>
<span>์ด์ด์ ๋ด์ฉ์ ์์ฑํด๋ณด๊ธฐ, inline : ์์์ ๋ด์ฉ๋งํผ ํฌ๊ธฐ์ฐจ์ง</span>
<span style="font-size: 100px;">์ถ๊ฐ๋ด์ฉ</span>
<h1>div ํ๊ทธ๋ ๋ธ๋ก, ํํ ์ฐจ์ง</h1>
<div><img src="coding.jpg" width="200px" height="100px"></div>
</body>
<ol>
<li>๊ตญ๋ฐฅ</li>
<li>๋์ฅ์ฐ๊ฐ</li>
<li>์๋๋ถ</li>
</ol>
<ul>
<li>๊ตญ๋ฐฅ</li>
<li>๋์ฅ์ฐ๊ฐ</li>
<li>์๋๋ถ</li>
</ul>
<a href="https://www.naver.com" target="">๋ค์ด๋ฒ ๊ฐ๊ธฐ</a>
<a href="https://www.google.com"><img src="coding.jpg" width="200px"></a>
</html>