-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss-pseudo.html
34 lines (34 loc) · 1.03 KB
/
css-pseudo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="pseudo.css">
<title>Document</title>
</head>
<body>
<a href="https://google.com" target="_blank">Google</a>
<ul>
<li>This is #1</li>
<li>This is #2</li>
<li>This is #3</li>
<li>This is #4</li>
<li>This is #5</li>
<li>This is #6</li>
<li>This is #7</li>
<li>This is #8</li>
<li>This is #9</li>
</ul>
<div id="greeting"> Hover here
<p>Hello</p>
</div>
<hr>
<h1>Hello</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quibusdam, saepe dolorum. Laudantium magnam voluptatem, dignissimos non sequi provident molestiae saepe alias reiciendis quidem placeat ipsa possimus deserunt odit sed eius?</p>
<ul id="fruit">
<li id="apple">Apple</li>
<li id="orange">Orange</li>
<li id="banana">Banana</li>
</ul>
</body>
</html>