-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.html
54 lines (51 loc) · 1.23 KB
/
list.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
<!DOCTYPE html>
<html>
<head>
<title>HTML Lists</title>
</head>
<body>
<p>This is the list of colors</p>
<ul style ="list-style-type:square;">
<li>Red</li>
<li>Blue</li>
<li>Green</li>
<li>Purple</li>
<li>White</li>
<li>Gold</li>
<li>Violet</li>
<li>Indigo</li>
</ul>
<p>This is a list of my favorite proteins</p>
<ol type = "A">
<li style ="font-size:40px;">Chicken</li>
<li>Goat</li>
<li>Turkey</li>
<li>Beef</li>
</ol>
<p>This is another ordered list</p>
<ol start= "22">
<li>Writing</li>
<li>Reading</li>
<li>Research</li>
<li>Eating</li>
</ol>
<p>This is an example of a nested list</p>
<ol>
<li>HTML</li>
<li>CSS
<ol>
<li>Basic CSS</li>
<li>Tailwind CSS</li>
</ol>
</li>
<li> Javascript
<ol>
<li> Vanilla Javascript</li>
<li style = "font-size:40px; background-color: purple;">React Javascript</li>
</ol>
</li>
<li>Solidity</li>
<li>Hardhat</li>
</ol>
</body>
</html>