03 – 中级 HTML

★列表元素(List)

有序列表无序列表

  • Unordered List(无序列表)

    • <ul></ul>

      • 列表项(List items)

        • <li></li>(项目符号)

  • Ordered List(有序列表)

    • <ol></ol>

      • 列表项(List items)

        • <li></li>(数字)

★嵌套和缩进(Nesting and Indentation)

如何编写好的代码

可以通过嵌套和缩进来找出问题所在:

<ul>
  <li>A</li>
  <li>
    B
    <ol>
      <li>B1</li>
      <li>
        B2
        <ul>
          <li>
            B2a
            <ul>
              <li>B2aa</li>
              <li>B2ab</li>
            </ul>
          </li>
          <li>B2b</li>
          <li>B2c</li>
        </ul>
      </li>
      <li>
        B3
        <ol>
          <li>B31</li>
          <li>B32</li>
        </ol>
      </li>
    </ol>
  </li>
  <li>C</li>
</ul>

理解HTML属性

★图像元素(Image)

将图像添加到我们的网站

★生日邀请项目

为您下个派对创建网站

<!-- 这是一个可能的解决方案 -->
<h1>It's My Birthday!</h1>
<h2>On the 12th May</h2>

<img src="https://raw.githubusercontent.com/appbrewery/webdev/main/birthday-cake3.4.jpeg" alt="purple birthday cake with candles" />

<h3>What to bring:</h3>
<ul>
  <li>Baloons (I love baloons)</li>
  <li>Cake (I'm really good at eating)</li>
  <li>An appetite (There will be lots of food)</li>
</ul>

<h3>This is where you need to go:</h3>
<a href="https://www.google.com/maps/@35.7040744,139.5577317,3a,75y,289.6h,87.01t,0.72r/data=!3m6!1e1!3m4!1sgT28ssf0BB2LxZ63JNcL1w!2e0!7i13312!8i6656">Google map link</a>

Last updated