为了账号安全,请及时绑定邮箱和手机立即绑定

如何制作一个简单的index.html网页?

如何制作一个简单的index.html网页?

制作一个简单的index.html网页
查看完整描述

4 回答

?
慕姐4208626

TA贡献1852条经验 获得超7个赞

<html>
<head>
<title>网页设计与网站建设课程网站</title>
<meta http-equiv="keywords" content="网页设计,网站建设,课程信息">
<meta http-equiv="description" content="网页设计与网站建设课程网站">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style>
body {
background-color: #660000;
color:#FFF;
}
div.container {
padding:50px 70px 20px 10px;
}
span.title {
font-weight:bold;
}
</style>
</head>
<body>
<div class="container">
<div>
<span class="title">
网页设计与网站建设课程网站
</span>
</div>
<div class="content">
<p>
网页设计
</p>
<p>
网站建设
</p>
<p>
课程信息
</p>
</div>
<div>
</body>
</html>



查看完整回答
反对 回复 2019-04-15
?
精慕HU

TA贡献1845条经验 获得超8个赞

<!DOCTYPE HTML>
<html>
<head>
</head>
<body>

你想做网页的内容就写在这里

</body>
</html>



查看完整回答
反对 回复 2019-04-15
?
胡说叔叔

TA贡献1804条经验 获得超8个赞

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.notice{
width: 300px;
margin: 0 auto;
border: 3px solid #666;
background: blue;
color: white;
}
.notice h1{font-size: 30px; text-align: center; padding-bottom: 30px;}
.notice a{color: white; text-decoration: none;}
</style>
</head>
<body>
<div class="notice">
<h1>通知</h1>
<ul>
<li>
<a href="#">通知1</a>
</li>
<li>
<a href="#">通知2</a>
</li>
<li>
<a href="#">通知3</a>
</li>
<li>
<a href="#">通知4</a>
</li>
</ul>
</div>
</body>
</html> 

查看完整回答
反对 回复 2019-04-15
  • 4 回答
  • 0 关注
  • 6132 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信