Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Упражнение № 2 - Lists</title>
- <link rel="stylesheet" type="text/css" href="reset.css"/>
- <link rel="stylesheet" type="text/css" href="style.css"/>
- </head>
- <body>
- <div id="content">
- <p>
- Preceding Text
- </p>
- <ul class="listTypeUpperRoman">
- <li>
- List item 1
- <ul class="listTypeLowerLatin">
- <li>
- Nested item 1.1
- </li>
- <li>
- Nested item 1.2
- </li>
- </ul>
- </li>
- <li>
- List item 2
- <ul class="listTypeDecimal">
- <li>
- Nested item 2.1
- </li>
- <li>
- Nested item 2.2
- <ul class="listTypeCircle">
- <li>
- Nested item 2.2.1
- </li>
- <li>
- Nested item 2.2.2
- <ul class="listTypeDisc">
- <li>
- Nested item 2.2.2.1
- </li>
- <li>
- Nested item 2.2.2.2
- </li>
- </ul>
- </li>
- <li>
- Nested item 2.2.3
- </li>
- </ul>
- </li>
- <li>
- Nested item 2.3
- </li>
- </ul>
- </li>
- <li>
- List item 3
- <ul class="listTypeDisc">
- <li>
- Nested item 3.1
- </li>
- <li>
- Nested item 3.2
- </li>
- <li>
- Nested item 3.3
- </li>
- </ul>
- </li>
- </ul>
- </div>
- </body>
- </html>
- ********************************************
- CSS
- *****************************
- body
- {
- font-family: Times New Roman;
- font-size: 1em;
- color: #000000;
- }
- #content
- {
- margin: 20px;
- }
- h1
- {
- padding: 10px 0px 20px 0px;
- }
- p
- {
- padding: 0px 0px 10px 0px;;
- }
- ul
- {
- margin: 0px 0px 0px 30px;
- }
- ul.listTypeUpperRoman li
- {
- list-style-type: upper-roman;
- }
- ul.listTypeLowerLatin li
- {
- list-style-type: lower-latin;
- }
- ul.listTypeDecimal li
- {
- list-style-type: decimal;
- }
- ul.listTypeCircle li
- {
- list-style-type: circle;
- }
- ul.listTypeDisc li
- {
- list-style-type: disc;
- }
- hr
- {
- width: 50%;
- height: 2px;
- color: #000000;
- margin: 15px 0px 15px 0px;
- text-align: left;
- }
Advertisement
Add Comment
Please, Sign In to add comment