3-8自由编程作业
来源:3-8 自由编程
精慕门515152
2022-11-30 20:48:03
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Career Builder</title>
</head>
<body>
<!-- 网页头部 -->
<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 class="banner">
<!-- banner图片 -->
<div class="banner_img">
<img src="./images/banner3.jpg" alt="">
</div>
<!-- banner遮罩层 -->
<div class="banner_shade">banner遮罩层</div>
<!-- banner表单 -->
<div class="banner_form">banner表单</div>
</section>
<!-- about区域 -->
<section class="about_area">
<!-- 标题和简短描述区域 -->
<div class="about_title_desc">
<h2>ABOUT</h2>
<p>分割线</p>
<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 class="about_det_desc">
<div class="about_det_desc_left">
<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 class="about_det_desc_mid">
<img src="./images/bb3.jpg" alt="">
</div>
<div class="about_det_desc_right_u">
<p>7000</p>
<p>分割线</p>
<p>student</p>
</div>
<div class="about_det_desc_right_d">
<p>600</p>
<p>分割线</p>
<p>Faculty</p>
</div>
</div>
</section>
<!-- 图文混排区域 -->
<section class="images_text">
<!-- 图片1 -->
<div class="img1">
<img src="./images/b1.jpg" alt="">
</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>
<p>EXPLORE</p>
</div>
<!-- 图片3 -->
<div class="img3">
<img src="./images/b2.jpg" alt="">
</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>
<p>EXPLORE</p>
</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>
<p>EXPLORE</p>
</div>
<!-- 图片6 -->
<div class="img6">
<img src="./images/b3.jpg" alt="">
</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>
<p>EXPLORE</p>
</div>
<!-- 图片8 -->
<div class="img8">
<img src="./images/b4.jpg" alt="">
</div>
</section>
<!-- gallery区域 -->
<section class="gallery_area">
<!-- gallery上半部分 -->
<div class="gallery_title_desc">
<h2>GALLERY</h2>
<p>分割线</p>
<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>
<!-- gallery下半部分 -->
<div class="gallery_det_desc">
<dl>
<dt>
<img src="./images/03-01.jpg" alt="">
</dt>
<dd>Science Lab</dd>
</dl>
<dl>
<dt>
<img src="./images/03-02.jpg" alt="">
</dt>
<dd>Indoor Stadium</dd>
</dl>
<dl>
<dt>
<img src="./images/03-03.jpg" alt="">
</dt>
<dd>Transportation</dd>
</dl>
<dl>
<dt>
<img src="./images/03-04.jpg" alt="">
</dt>
<dd>Kids Room</dd>
</dl>
<dl>
<dt>
<img src="./images/03-05.jpg" alt="">
</dt>
<dd>Meditation Classes</dd>
</dl>
<dl>
<dt>
<img src="./images/03-06.jpg" alt="">
</dt>
<dd>Kids Play Ground</dd>
</dl>
</div>
</section>
<!-- 网页的页脚 -->
<footer>
<p>© 2016 imooc.com 京ICP备13046642号</p>
</footer>
</body>
</html>
1回答
imooc_慕慕
2022-12-01
同学你好,代码结构和图片引入是对的,很棒,祝学习愉快~
相似问题