-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.html
More file actions
165 lines (157 loc) · 5.21 KB
/
Copy pathlist.html
File metadata and controls
165 lines (157 loc) · 5.21 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="assets/html5.png" type="image/x-icon">
<title>Lists</title>
<link rel="stylesheet" href="./assets/style.css"/>
</head>
<body>
<a href="index.html">
<button>BACK</button>
</a>
<article>
<header>
<h1>Lists element</h1>
</header>
<div class="ul">
<h2><ul>: The Unordered List element</h2>
<p>
The <code><ul></code> HTML element represents an unordered list
of items, typically rendered as a bulleted list.
</p>
</div>
<div class="attribute">
<h3>Attributes</h3>
<div class="unordered-list">
<div class="list-square">
<code><b>square</b></code>
<p>This atribute create dot square in the list</p>
<code
><ul><br />
<li>Onion</li><br />
<li>Tomate</li><br />
<li>Garlic</li><br />
</ul></code
>
<ul class="square">
<li>Onion</li>
<li>Tomate</li>
<li>Garlic</li>
</ul>
</div>
<div class="list-circle">
<code><b>circle</b></code>
<p>This atribute create dot cicle in the list.</p>
<code
><ul><br />
<li>Bier</li><br />
<li>Wine</li><br />
<li>Water</li><br />
</ul></code
>
<ul class="circle">
<li>Bier</li>
<li>Wine</li>
<li>Water</li>
</ul>
</div>
<div class="list-disc">
<code><b>disc</b></code>
<p>This atribute create dot disc in the list.</p>
<code
><ul><br />
<li>Orange</li><br />
<li>Limon</li><br />
<li>Watermelon</li><br />
</ul></code
>
<ul class="disc">
<li>Orange</li>
<li>Limon</li>
<li>Watermelon</li>
</ul>
</div>
</div>
<div class="ol"></div>
<h2><ol>: The ordered List element.</h2>
<p>
The <code><ol></code> HTML element represents an ordered list of
items, typically rendered as a numbered list.
</p>
<h3>Attributes</h3>
<div class="ordered-list">
<div class="list-reversed">
<code><b>reversed</b></code>
<p>
This Boolean attribute specifies that the list's items are in
reverse order. Items will be numbered from high to low.
</p>
<code
><ol reversed ><br />
<li>Ricardo</li><br />
<li>Pablo</li><br />
<li>Soraia</li><br />
</ol></code
>
<ol reversed class="reversed">
<li>Ricardo</li>
<li>Pablo</li>
<li>Soraia</li>
</ol>
</div>
<div class="list-start">
<code><b>start</b></code>
<p>
An integer to start counting from for the list items. Always an
Arabic numeral (1, 2, 3, etc.), even when the numbering
<code>type</code> is letters or Roman numerals. For example, to
start numbering elements from the letter "d" or the Roman numeral
"iv," use <code>start="6"</code>.
</p>
<code
><ol><br />
<li>Monica</li><br />
<li>Peter</li><br />
<li>Layla</li><br />
</ol></code
>
<ol start="6" class="start">
<li>Monica</li>
<li>Peter</li>
<li>Layla</li>
</ol>
</div>
<div class="list-type">
<code><b>type</b></code>
<p>Sets the numbering type:<br /></p>
<ul>
<li><code>a</code> for lowercase letters</li>
<li><code>A</code> for uppercase letters</li>
<li><code>i</code> for lowercase Roman numerals</li>
<li><code>I</code> for uppercase Roman numerals</li>
<li><code>1</code> for numbers (default)</li>
</ul>
<code
><ol type="a" ><br />
<li>HTML</li><br />
<li>CSS</li><br />
<li>JavaScript</li><br />
</ol></code
>
<ol type="a" class="type">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ol>
</div>
</div>
</div>
</article>
<a href="index.html">
<button>BACK</button>
</a>
</body>
</html>