-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontents.html
65 lines (61 loc) · 2.68 KB
/
contents.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!-- 7. Build a complex nested list structure representing a multi-level table of contents. Use unordered lists
(<ul>) and list items (<li>) with inline-block styling to create a structured layout. Apply formatting tags to
enhance the presentation of list items. -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hyperlink Contents</title>
<style>
a{
color: #0084ff;
}
</style>
</head>
<body>
<h1>Table of Contents</h1>
<ul type="disk">
<li><a href="#">Part 1: Introduction</a></li>
<li><a href="#">Part 2: Getting Started</a></li>
<ul type="circle">
<li><a href="#">2.1 Installing the Software</a> </li>
<li><a href="#">2.2 Creating a New Project</a></li>
<ul type="square">
<li><a href="#">2.2.1 Project Templates</a></li>
<li><a href="#">2.2.2 Customizing Settings</a></li>
</ul>
<li><a href="#">2.3 Exploring the Interface</a></li>
<ul type="square">
<li><a href="#">2.3.1 Toolbar Features</a></li>
<li><a href="#">2.3.2 Panel Layout</a></li>
</ul>
<ul type="square">
<ul>
<li><a href="#">2.3.2.1 Docking Panels</a></li>
<li><a href="#">2.3.2.2 Tabbed Interface</a></li>
</ul>
</ul>
</ul>
<li><a href="#">Part 3: Advanced Topics</a></li>
<ul type="circle">
<li><a href="#">3.1 Working With Pluggins</a></li>
<ul type="square">
<li><a href="#">3.1.1 Installing Pluggins</a></li>
<li><a href="#">3.1.2 Pluggin Configuration</a></li>
</ul>
<li><a href="#">3.2 Customizing the UI</a></li>
<ul type="square">
<li><a href="#">3.2.1 Changing Themes</a></li>
<li><a href="#">3.2.2 Configuring Shortcuts</a></li>
</ul>
<li><a href="#">3.3 Optimizing Perfromance</a></li>
<ul type="square">
<li><a href="#">3.3.1 Caching Themes</a></li>
<li><a href="#">3.3.2 Resource Minification</a></li>
</ul>
</ul>
<li><a href="#">Part4: Conclusion</a></li>
</ul>
</body>
</html>