Тег <ul></ul>




Этот тег определяет маркированный список.




index.html
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  •  <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
  • </head>
  • <body>
  •  <ul>
  •   <li>Hello World!</li>
  •   <li>To be or not to be?</li>
  •   <li>Привет Мир!</li>
  •  </ul>
  •  <br />
  •  <br />
  •  <ul id="ul1">
  •   <li>Hello World!</li>
  •   <li>To be or not to be?</li>
  •   <li>Привет Мир!</li>
  •  </ul>
  •  <script>
  •   $(document).ready(function () {
  •    $("#ul1").css("list-style-type", "none");
  •   });
  •  </script>
  • </body>
  • </html>
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  •  <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
  • </head>
  • <body>
  •  <ul>
  •   <li>Hello World!</li>
  •   <li>To be or not to be?</li>
  •   <li>Привет Мир!</li>
  •  </ul>
  •  <br />
  •  <br />
  •  <ul id="ul1">
  •   <li>Hello World!</li>
  •   <li>To be or not to be?</li>
  •   <li>Привет Мир!</li>
  •  </ul>
  •  <script>
  •   $(document).ready(function () {
  •    $("#ul1").css("list-style-type", "none");
  •   });
  •  </script>
  • </body>
  • </html>