-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.html
35 lines (29 loc) · 1014 Bytes
/
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
<!doctype html>
<html>
<head>
<title>WEB1 - html</title>
<meta charset="utf-8">
</head>
<body>
<h1><a href="index.html" target="blank" title="index">WEB</a></h1>
<ul>
<li><a href="1.html">HTML</a></li>
<li><a href="2.html">CSS</a></li>
<li><a href="3.html">JavaScript</a></li>
</ul>
<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>
<a href="https://www.w3.org/TR/2011/WD-html5-20110405/" target="blank" title="HTML5 specification">Hypertext Markup language<a>
<p>To force<br> line breaks<br> in a text,<br> use the br<br> element.</p>
<p>Be not afraid of greatness.<br>
Some are born great,<br>
some achieve greatness,<br>
and others have greatness thrust upon them.</p>
<p><em>-William Shakespeare</em></p>
<img src = "a.jpg" width = "100%">
</body>
</html>