请老师检查一下代码。谢谢。
来源:2-18 自由编程
慕斯卡2474635
2021-05-16 17:46:36
<!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>Document</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区域 -->
<div class="banner">
<!-- 图片 -->
<div class="background-picture">
<img src="images/banner3.jpg" alt="">
</div>
<!-- 遮罩层 -->
<div class="mask"></div>
<!-- 表单 -->
<div class="text">
<form action="">
<input type="text" placeholder="your Name">
<input type="text" placeholder="your Phone">
<input type="email" placeholder="your Email">
<textarea name="" id="" cols="30" rows="10" placeholder="your Comment"></textarea>
<p>
<input type="submit" placeholder="SEND MESSAGE">
</p>
</form>
</div>
</div>
<!-- About区域 -->
<div class="about">
<!-- 标题和简短描述区域 -->
<div>
<h2>ABOUT</h2>
<div>分割线</div>
<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="describe">
<div>
<h3>
<p>A WORD</p>
<p>ABOUT US</p>
</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" alt="">
</div>
<div>
<p>70000</p>
<div>分割线</div>
<p>Sudents</p>
</div>
<div>
<p>600</p>
<div>分割线</div>
<p>Faculty</p>
</div>
</div>
</div>
<!-- 图文混排区域 -->
<div class="picture-and-word">
<div class="picture">
<img src="images/b1.jpg" alt="">
</div>
<div class="word">
<p>
<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>
</div>
<div class="picture">
<img src="images/b2.jpg" alt="">
</div>
<div class="word">
<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>
</div>
<div class="word">
<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>
</div>
<div class="picture">
<img src="images/b3.jpg" alt="">
</div>
<div class="word">
<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>
</div>
<div class="picture">
<img src="images/b4.jpg" alt="">
</div>
</div>
<!-- Gallery区域 -->
<div class="gallery">
<div>分割线</div>
<div>
<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 class="picture">
<dl>
<dt>iv
<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 aclasses</dd>
</dl>
<dl>
<dt>
<img src="images/03-06.jpg" alt="">
</dt>
<dd>Kids Play Ground</dd>
</dl>
</div>
</div>
<!-- Footer区域 -->
<footer>
<p>©2016 imooc.com 京ICP备13046642号</p>
</footer>
</body>
</html>
1回答
同学你好,提交按钮名字也需要是英文的,可以添加上value属性,如下:

祝学习愉快!
相似问题