第一个网页感想

1.源代码

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>watching</title>
</head>
  <body>
  <h1> First Web Page</h1>
  <big><u>your legend</u><br></big>
  <h2> 喜欢的电影</h2>
  <hr size="1tpx" >
  <h2>喜欢的电影</h2>
    <ol type="1" start="1">
      <li><cite><big>肖克申的救赎</big></cite></li>
        <img src="F:\Google\Google图片/timg.jpg">
      <li><cite><big>血战钢锯岭</big></cite></li>
        <img src="F:\Google\Google图片/8dc06eff9658208f49b75ddc2f5fc4e1.png">
      <li><cite><big>辛德勒的名单</big></cite></li>
        <img src="F:\Google\Google图片/timg (1).jpg">
    </ol>
  </body>
</html>

2.功能

该代码实现的是对我喜欢的电影的排名,并插入了相应的图片,实现了有序列表还有字体变大等等功能

3.感想

感觉很有趣,制作出来的东西很直观。在有序列表里要注意<li></li>要写在最外面不然序号是无法显示的。

原文地址:https://www.cnblogs.com/zl1234/p/9642443.html