-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2-2.html
More file actions
114 lines (103 loc) · 3.82 KB
/
2-2.html
File metadata and controls
114 lines (103 loc) · 3.82 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="2-2.css" type="text/css">
</head>
<body>
<h1>HTML & CSS</h1><br>
<hr>
<h1>Heading</h1>
<div class="container">
<p id="p1">paragraph1</p>
<p id="p2">paragraph2</p>
</div>
<p>paragraph3</p><br>
<hr>
<p class="text-center">Center</p>
<p class="text-large text-red">Large Red</p>
<p class="text-center text-large text-blue">Center Large Blue</p>
<hr>
<a href="http://www.google.com">www.google.com</a><br>
<a href="http://www.naver.com">www.naver.com</a><br>
<a href="http://www.daum.net" target="_blank">www.daum.net</a><br>
<hr>
<h1>Heading</h1>
<div>
<p>paragraph1</p>
<p>paragraph2</p>
<span><p>paragraph3</p></span>
</div>
<p>paragraph4</p>
<hr>
<div>A div element.</div>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<p id="ul">The first paragraph.</p>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<h2>Another list</h2>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<hr>
<a href="#" id="7.0">마우스를 올려보세요.</a><br>
<input type="text" placeholder="focus me"><br>
<a href="#" target="_blank" class="7.1">This is a link</a><br>
<input type="text" value="I'll be red when focused" class="7.1"><br>
<input type="password" value="I'll be red when focused" class="7.1"><br>
<hr>
<input type="radio" checked="checked" value="male" name="gender" class="7,2"><span>Male</span><br>
<input type="radio" value="female" name="gender" class="7,2"><span>female</span><br>
<input type="radio" value="neuter" name="gender" class="7,2" disabled><span>Neuter</span><br>
<hr>
<input type="checkbox" checked="checked" value="bicycle" class="7,2"><span>I have a bicycle</span><br>
<input type="checkbox" value="car" class="7,2"><span>I have a car</span><br>
<input type="checkbox" value="motorcycle" class="7,2" disabled><span>I have a motorcycle</span>
<br><hr>
<p>This paragraph is the first child of its parent(body).</p>
<h1>Welcome to My Homapage</h1>
<p>This paragraph is the second child of its parent.</p>
<div>
<p>This paragraph is the first child of its parent(div).</p>
<p>This paragraph is the second child of its parent.</p>
</div>
<br><hr>
<ol class="7.3">
<li>Espresso</li>
<li>Americano</li>
<li>Caffe Latte</li>
<li>Caffe Mocha</li>
<li>Caramel Latte</li>
<li>Cappuccino</li>
</ol>
<ul class="7.3">
<li>Espresso</li>
<li>Americano</li>
<li>Caffe Latte</li>
<li>Caffe Mocha</li>
<li>Caramel Latte</li>
<li>Cappuccino</li>
</ul>
<br><hr>
<h1 class="7.3">This is a haeding</h1>
<p class="7.3">The first paragraph.</p>
<p class="7.3">The second paragraph.</p>
<p class="7.3">The third paragraph.</p>
<p class="7.3">The fourth paragraph.</p>
<div>
<h1 class="7.3">This is a haeding</h1>
<p class="7.3">The first paragraph.</p>
<p class="7.3">The second paragraph.</p>
<p class="7.3">The third paragraph.</p>
<p class="7.3">The fourth paragraph.</p>
</div>
</body>
</html>