-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlecture4.html
More file actions
96 lines (80 loc) · 1.44 KB
/
lecture4.html
File metadata and controls
96 lines (80 loc) · 1.44 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
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<style>
#parent{
background-color: rgb(255, 255, 0);
height: 100px;
width: 100px;
}
#child{
background-color: brown;
height: 50px;
width: 50px;
}
-->
<!--
/* input:hover{
background-color: brown;
}
input:focus{
background-color: aqua;
} */
/* div p {
background-color: red;
}
ul li:first-child{
background-color: blue;
}
ul li:last-child{
background-color: blueviolet;
} */
/* h3::before{
content: "😊";
} -->
<!-- h3::after{
content:" hii " ;
background-color: crimson;
} */ -->
<!-- </style>
<body>
<div id="parent">
<div id="child">
</div>
</div> -->
<!-- <div>
<p> pragraph</p>
</div>
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
<li>four</li>
</ul> -->
<!-- <input type="text" placeholder="focus on focus"> -->
<!-- </body>
</html> -->
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
<style>
li{
front: size 2rem;
}
</style>
</head>
<body>
<ul>
<li> 1 <!--32px -->
<!-- <ul> <!--32px -->
<li>1.1
<li>1.1.1</li>
</ul>
</li>
<li>1.2</li>
</ul>
</body>
</html>