zoukankan      html  css  js  c++  java
  • List<ul>

    <ul> stands for unordered list and is used to contain the list. The list elements, <li>, are children of the unordered list. Each bullet point is its own <li> and the <li> elements must be children of the <ul> - they can't be placed on their own.

    there's another kind of list: an ordered list, <ol>

    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <title>Lists Quiz</title>
    </head>
    <body>
      <p>Create an unordered list! Make a list of the three web languages: HTML, CSS and JavaScript.</p>
      <ul>
        <li>HTML</li>
        <li>CSS</li>
        <li>JavaScript</li>
      </ul>
    </body>
    </html>
  • 相关阅读:
    网络规划和布线
    网络编程
    NoSQL 非关系数据库
    OpenCV
    首页
    C++关键字
    TCP/IP 详解7 Ping指令
    TCP详解 (1)
    GRE封装解封装过程
    GRE tunnel
  • 原文地址:https://www.cnblogs.com/weiweim/p/8478782.html
Copyright © 2011-2022 走看看