Skip to content

Commit 9bb9216

Browse files
save file
1 parent 3d07b83 commit 9bb9216

File tree

1 file changed

+55
-16
lines changed

1 file changed

+55
-16
lines changed

html-components/html-components-list/html-components-list.html

Lines changed: 55 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,18 @@
9898
{font-family:arial}
9999

100100
#center
101-
{max-width:1400px;margin:0 auto;}
101+
{max-width:1400px;margin:0 auto}
102+
103+
.list
104+
{display:flex;flex-direction:column;gap:10px;margin-top:20px}
105+
106+
a
107+
{display:flex;margin-bottom:10px}
108+
.name
109+
{width:200px}
110+
.desc
111+
{flex:1}
112+
102113
</style>
103114

104115
</head>
@@ -116,30 +127,58 @@
116127
<div id=center>
117128

118129
<div>
119-
<a href='../list/snippet-html-console/snippet-html-console.html'>
120-
snippet-html-console
121-
</a>
130+
The current list of html components
122131
</div>
123132

124-
<div>
125-
<a href='../list/web-editor/web-editor.html'>
126-
web-editor
127-
</a>
128-
</div>
133+
<div class=list>
129134

130-
<div>
135+
<a href='../list/dir-trere/dir-tree.html'>
136+
<span class=name>
137+
dir-tree
138+
</span>
139+
<span class=desc>
140+
displays a directory structure
141+
</span>
142+
</a>
143+
131144
<a href='../list/file-mod/file-mod.html'>
132-
file-mod
145+
<span class=name>
146+
file-mod
147+
</span>
148+
<span class=desc>
149+
the base for reading and writing various file types in javascript
150+
</span>
133151
</a>
134-
</div>
135-
136-
<div>
152+
153+
<a href='../list/snippet-html-console/snippet-html-console.html'>
154+
<span class=name>
155+
snippet-html-console
156+
</span>
157+
<span class=desc>
158+
a runnable html snippet with console output
159+
</span>
160+
</a>
161+
137162
<a href='../list/web-console/web-console.html'>
138-
web-console
163+
<span class=name>
164+
web-console
165+
</span>
166+
<span class=desc>
167+
a dev tools like console in a webpage
168+
</span>
169+
</a>
170+
171+
<a href='../list/web-editor/web-editor.html'>
172+
<span class=name>
173+
web-editor
174+
</span>
175+
<span class=desc>
176+
an editor in a web page
177+
</span>
139178
</a>
179+
140180
</div>
141181

142-
143182
</div>
144183

145184
</body>

0 commit comments

Comments
 (0)