老师帮忙检查下代码是否正确?哪里需要改进
来源:3-8 自由编程
Jasmine江江
2020-12-03 14:17:12
# 具体遇到的问题
# 报错信息的截图
# 相关课程内容截图
# 尝试过的解决思路和结果
# 粘贴全部相关代码,切记添加代码注释(请勿截图)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
</head>
<body>
<!-- Header区域 -->
<header>
<img src="images/logo.png">
<nav>
<ul>
<li>HOME</li>
<li>ABOUT</li>
<li>GALLERY</li>
<li>FACULTY</li>
<li>EVENTS</li>
<li>CONTACT</li>
</ul>
</nav>
</header>
<!-- banner区域 -->
<div class="banner">
<div class="banner-images">
<img src="images/banner3.jpg">
</div>
<div class="banner-cover">
banner遮罩层
</div>
<div class="banner-form">
banner表单
</div>
</div>
<!-- about区域 -->
<div class="about">
<!-- 标题和介绍 -->
<div class="about-title">
<h2>ABOUT</h2>
<p>分割线</p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting Ipsum has been the industry's standard dummy ever since the 1500s.</p>
</div>
<!-- 详细内容介绍 -->
<div class="about-content">
<div>
<h3>A WORD ABOUT US</h3>
<p>Praesent dignissim viverra est, sed bibendum ligula congue non. Sed ac nisl et felis gravida commodo? Suspendisse eget ullamcorper ipsum. Suspendisse diam amet.</p>
<p>EXPLORE</p>
</div>
<div><img src="images/bb3.jpg"></div>
<div>
<p>70000</p>
<p>分割线</p>
<p>Students</p>
<p>600</p>
<p>分割线</p>
<p>Faculty</p>
</div>
</div>
</div>
<!-- 图文混排区域Library -->
<div class="images-and-text">
<div class="images1">
<img src="images/b1.jpg">
</div>
<div class="text2">
<h3>Library</h3>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>
<p>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<p>EXPLORE</p>
</div>
<div class="images3">
<img src="images/b2.jpg">
</div>
<div class="text4">
<h3>Library</h3>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>
<p>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<p>EXPLORE</p>
</div>
<div class="text5">
<h3>Library</h3>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>
<p>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<p>EXPLORE</p>
</div>
<div class="images6">
<img src="images/b3.jpg">
</div>
<div class="text7">
<h3>Library</h3>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>
<p>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<p>EXPLORE</p>
</div>
<div class="images8">
<img src="images/b4.jpg">
</div>
</div>
<!-- gallery区域 -->
<div class="gallery">
<!-- 标题和介绍 -->
<div class="gallery-title">
<h2>GALLERY</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
</div>
<div calss="gallery-content">
<dl>
<dt><img src="images/03-01.jpg"></dt>
<dd>Science Lab</dd>
</dl>
<dl>
<dt><img src="images/03-02.jpg"></dt>
<dd>Indoor Stadium</dd>
</dl>
<dl>
<dt><img src="images/03-03.jpg"></dt>
<dd>Transportation</dd>
</dl>
<dl>
<dt><img src="images/03-04.jpg"></dt>
<dd>Kids Room</dd>
</dl>
<dl>
<dt><img src="images/03-05.jpg"></dt>
<dd>Meditation Classes</dd>
</dl>
<dl>
<dt><img src="images/03-06.jpg"></dt>
<dd>Kids Play Ground</dd>
</dl>
</div>
</div>
<!-- footer区域 -->
<footer>
<p>© 2016imooc.com 京ICP备13046642号</p>
</footer>
</body>
</html>
1回答
同学你好,代码可做如下优化:
1、about的数字区,建议分成上下两块,这样更规范,如下:
2、gallery区标题下也有横线,建议添加一个p标签表示横线:
祝学习愉快!
相似问题