-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsummary.html
48 lines (46 loc) · 1.33 KB
/
summary.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
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DOM Summary</title>
</head>
<body>
<!-- main>section.section-item*3>h1{section title - $}+ul>li*4{Item-$} -->
<main>
<section class="section-item">
<h1 id="first-title">section title - 1</h1>
<ul>
<li>Item-1</li>
<li>Item-2</li>
<li>Item-3</li>
<li>Item-4</li>
</ul>
</section>
<section class="section-item">
<h1>section title - 2</h1>
<ul>
<li>Item-1</li>
<li>Item-2</li>
<li>Item-3</li>
<li>Item-4</li>
</ul>
</section>
<section class="section-item">
<h1>section title - 3</h1>
<ul class="" id="third-list">
<li>Item-1</li>
<li>Item-2</li>
<li>Item-3</li>
<li>Item-4</li>
</ul>
</section>
</main>
<script>
console.log('embedded JS')
</script>
<script src="js/first.js"></script>
<script src="js/second.js"></script>
<script src="js/third.js"></script>
</body>
</html>