用HTML制作新闻网页
时间: 2023-07-24 20:35:22 浏览: 115
好的,制作新闻网页需要考虑以下几个方面:
1. 页面布局:需要设计一个合适的页面布局,包括标题、导航栏、新闻列表和底部信息等。
2. 样式设计:需要为网页添加样式,包括字体、颜色、背景、边框、对齐等。
3. 新闻列表:需要按照时间顺序或者重要程度来排列新闻列表,并添加新闻标题、摘要、作者、发布时间等信息。
4. 阅读页面:需要为每篇新闻创建一个单独的阅读页面,并在页面上添加新闻内容、作者、发布时间等信息。
以下是一个简单的 HTML 新闻网页的示例代码:
```
<!DOCTYPE html>
<html>
<head>
<title>新闻网页</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
header {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
}
nav {
background-color: #666;
color: white;
padding: 10px;
text-align: center;
font-weight: bold;
}
section {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 20px;
}
article {
background-color: white;
border: 1px solid #ccc;
box-shadow: 2px 2px 5px #ccc;
margin-bottom: 20px;
width: 30%;
}
h1 {
font-size: 24px;
margin: 0;
padding: 10px;
background-color: #333;
color: white;
}
h2 {
font-size: 18px;
margin: 10px;
padding: 0;
}
p {
font-size: 14px;
margin: 10px;
padding: 0;
}
footer {
background-color: #333;
color: white;
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>新闻网页</h1>
</header>
<nav>
<a href="#">首页</a>
<a href="#">国内新闻</a>
<a href="#">国际新闻</a>
<a href="#">体育新闻</a>
<a href="#">娱乐新闻</a>
</nav>
<section>
<article>
<h1>新闻标题1</h1>
<h2>作者:XXX 发布时间:2021-06-01</h2>
<p>新闻摘要1</p>
</article>
<article>
<h1>新闻标题2</h1>
<h2>作者:XXX 发布时间:2021-06-02</h2>
<p>新闻摘要2</p>
</article>
<article>
<h1>新闻标题3</h1>
<h2>作者:XXX 发布时间:2021-06-03</h2>
<p>新闻摘要3</p>
</article>
<article>
<h1>新闻标题4</h1>
<h2>作者:XXX 发布时间:2021-06-04</h2>
<p>新闻摘要4</p>
</article>
<article>
<h1>新闻标题5</h1>
<h2>作者:XXX 发布时间:2021-06-05</h2>
<p>新闻摘要5</p>
</article>
<article>
<h1>新闻标题6</h1>
<h2>作者:XXX 发布时间:2021-06-06</h2>
<p>新闻摘要6</p>
</article>
</section>
<footer>
<p>版权所有 © 2021 新闻网页</p>
</footer>
</body>
</html>
```
您可以根据实际需求,适当修改代码和样式,来实现您自己的新闻网页。
阅读全文