请老师帮忙检查作业,谢谢
来源:2-18 自由编程
小周ya
2021-12-01 16:27:13
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Career Builder</title>
</head>
<body>
<!-- Header区域 -->
<header>
<!-- logo -->
<div class="logo">
<!-- 导航栏的内容 -->
<img src="images/logo.png" alt="">
</div>
<!-- 导航 -->
<nav>
<ul>
<li>HOME</li>
<li>ABOUT</li>
<li>GALLERY</li>
<li>FACULTY</li>
<li>EVENTS</li>
<li>CONTACT</li>
</ul>
</nav>
</header>
<!-- Banner区域 -->
<section>
<!-- 图片 -->
<div class="picture">
<img src="images/banner3.jpg">
</div>
<!-- 遮罩层 -->
<div class="mask">
<p>banner遮罩层</p>
</div>
<!-- 表单 -->
<div class="form">
<form>
<input type="text" placeholder="your Name">
<input type="text" placeholder="your Phone">
<input type="email" placeholder="your Email">
<textarea rows="4" cols="120" placeholder="Write Your Comment Here"></textarea>
<input type="submit" value="SEND MESSAGE">
</form>
</div>
</section>
<!-- About区域 -->
<section>
<!-- About上半部分 -->
<div class="top-about">
<h2>ABOUT</h2>
<span>分割线</span>
<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>
<!-- About下半部分 -->
<div>
<div class="down-left-about">
<h2>A WOED</h2>
<h2>ABOUT US</h2>
<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>
<span>EXPLORE</span>
</div>
<div class="down-between-about">
<img src="images/bb3.jpg">
</div>
<div class="down-right-about">
<div class="down-right1-about">
<p>70000</p>
<span>分割线</span><br>
<span>Students</span>
</div>
<div class="down-right2-about">
<p>600</p>
<span>分割线</span><br>
<span>Faculty</span>
</div>
</div>
</div>
</section>
<!-- 图文混排区域 -->
<section >
<!-- 图片1 -->
<div class="image1">
<img src="images/b1.jpg">
</div>
<!-- 文字2 -->
<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>
<span>EXPLORE</span>
</div>
<!-- 图片3 -->
<div class="image3">
<img src="images/b2.jpg">
</div>
<!-- 文字4 -->
<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>
<span>EXPLORE</span>
</div>
<!-- 文字5 -->
<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>
<span>EXPLORE</span>
</div>
<!-- 图片6 -->
<div class="image6">
<img src="images/b3.jpg">
</div>
<!-- 文字7 -->
<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>
<span>EXPLORE</span>
</div>
<!-- 图片8 -->
<div class="image8">
<img src="images/b4.jpg">
</div>
</section>
<!-- Gallery区域 -->
<section>
<!-- Gallery上半部分 -->
<div class="top-gallery">
<h3>Gallery</h3>
<span>分割线</span>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting<br> industryLorem Ipsum has been the industry's standard dummy<br> text ever since the 1500s.</p>
</div>
<!-- Gallery下半部分 -->
<div class="down-gallery">
<!-- Gallery区域详细信息区的内容 -->
<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>
</section>
<!-- Footer区域 -->
<footer>
<!-- 文字内容 -->
<p>©2016 imooc.com 京ICP备13046642号</p>
</footer>
</body>
</html>
1回答
同学你好,代码实现的很棒,继续加油,祝学习愉快~
相似问题