-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1-1.html
More file actions
48 lines (42 loc) · 849 Bytes
/
1-1.html
File metadata and controls
48 lines (42 loc) · 849 Bytes
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
//lean 2019.12.27<br>
//strong u h1~6 br p tag<br>
<strong>Creating <u>web<></u></strong> what is it? tag
<h1>head tag</h1>
I want next line, how?
using br tag<br>
like this<br>
or using p(start) /p(end) tag
<p style="margin-top:5px;">
like this
</P>
//2020.01.02<br>
//<br><br>
(html(head)(body))모든 html의 구조<br><br>
<!doctype html>
<html>
using title head body html
<head>
<title>Web1-html</title>
<meta charset="utf-8">
</head>
<body>
<h1>1-1코드</h1>
<p>
using
tag and attribute
<img src="coding.jpg" width="150">
</p>
using ul(unordered list ->Parent), li(child) <br>
<ul>
<li>1. html</li>
<li>2. css</li>
<li>3. javaScrpit</li>
</ul>
using ol(ordered list ->Parent), li(child) <br>
<ol>
<li>name</li>
<li>number</li>
<li>score</li>
</ol>
</body>
</html>