Source Code:
(back to article)
Submit
Result:
Report an issue
99
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
›
⌄
⌄
⌄
⌄
⌄
⌄
⌄
⌄
⌄
⌄
<!DOCTYPE html>
<
html
>
<
head
>
<
style
>
ol
{
background:
#1c87c9
;
padding:
20
px
;
color:
cyan
;
}
ul
{
background:
#8ebf42
;
padding:
20
px
;
}
ol
li
{
background:
#666
;
padding:
5
px
;
margin-left:
35
px
;
}
ul
li
{
background:
#eee
;
margin:
5
px
;
}
</
style
>
</
head
>
<
body
>
<
ol
>
<
li
>Кофе</
li
>
<
li
>Чай</
li
>
<
li
>Молоко</
li
>
</
ol
>
<
ul
>
<
li
>Кофе</
li
>
<
li
>Чай</
li
>
<
li
>Молоко</
li
>
</
ul
>
</
body
>
<!DOCTYPE html> <html> <head> <style> ol { background: #1c87c9; padding: 20px; color: cyan; } ul { background: #8ebf42; padding: 20px; } ol li { background: #666; padding: 5px; margin-left: 35px; } ul li { background: #eee; margin: 5px; } </style> </head> <body> <ol> <li>Кофе</li> <li>Чай</li> <li>Молоко</li> </ol> <ul> <li>Кофе</li> <li>Чай</li> <li>Молоко</li> </ul> </body> </html>