请参照网址"https://www.bjd.com.cn/jbw/news/"写一个一样的html网页并给出代码
时间: 2023-05-28 13:02:38 浏览: 192
新闻代码html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>北京晚报新闻</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
margin: 0;
padding: 0;
}
h1 {
font-size: 3em;
text-align: center;
margin-top: 30px;
margin-bottom: 30px;
color: #149bda;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 30px;
background-color: #ffffff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.news-item {
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid #e2e2e2;
}
.news-item h2 {
margin-top: 0;
margin-bottom: 15px;
font-size: 1.5em;
color: #333333;
}
.news-item p {
margin-top: 0;
margin-bottom: 15px;
font-size: 1.2em;
color: #777777;
}
.news-item a {
color: #149bda;
text-decoration: none;
}
.news-item a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>北京晚报新闻</h1>
<div class="container">
<div class="news-item">
<h2><a href="#">乾隆花瓶拍出1亿元,业内:藏品市场泡沫退去</a></h2>
<p>经过激烈竞拍后,周一晚间,一件乾隆年间瓷器——乾隆帝御制五彩琺瑯彩花瓶以总价1亿元成交。</p>
</div>
<div class="news-item">
<h2><a href="#">船厂无人接盘,中船重工琼州船厂拍卖落槌</a></h2>
<p>中船重工旗下的琼州船厂因债务危机而被拍卖,但拍卖会上未有人竞拍该船厂,最终由拍卖行以7.756亿元落槌。</p>
</div>
<div class="news-item">
<h2><a href="#">北京西站开通首条“直达”动车组列车</a></h2>
<p>北京西站当天开通了一列直达西安的动车组列车,全程4.5小时。这是北京西站首次开行跨省直达的高铁列车。</p>
</div>
<div class="news-item">
<h2><a href="#">黄山景区获评2021年国家5A级旅游景区</a></h2>
<p>黄山风景名胜区近日获评2021年国家5A级旅游景区,成为安徽省仅有的两家国家5A级景区之一。</p>
</div>
<div class="news-item">
<h2><a href="#">京东618成交额突破3000亿</a></h2>
<p>据京东官方数据,截至6月18日24时,2021京东6.18全球好物节累计成交额超3000亿元,同比增长28.4%。</p>
</div>
</div>
</body>
</html>
阅读全文