网页设计模仿南京大学新闻首页简单代码HTML加css
时间: 2024-11-18 16:15:56 浏览: 14
网页设计期末作业,使用HTML、CSS、Jquery模仿网易云网页
网页设计通常涉及HTML用于结构、CSS负责样式和布局。这里是一个简单的HTML和CSS示例,模拟南京大学新闻首页的样子:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>南京大学新闻首页</title>
<link rel="stylesheet" type="text/css" href="styles.css"> <!-- 引入CSS文件 -->
</head>
<body>
<header>
<nav>
<a href="#home">首页</a>
<a href="#news">新闻</a>
<a href="#about">关于我们</a>
</nav>
</header>
<main id="home">
<h1 class="title">南京大学新闻</h1>
<section class="latest-news">
<h2>最新新闻</h2>
<ul>
<li><a href="#">新闻1标题</a></li>
<li><a href="#">新闻2标题</a></li>
<!-- 添加更多新闻项... -->
</ul>
</section>
</main>
<footer>
© 2023 南京大学 - 新闻中心
</footer>
</body>
</html>
```
接下来是相应的CSS部分 (styles.css):
```css
body {
font-family: Arial, sans-serif;
}
header {
background-color: #f5f5f5;
padding: 20px;
display: flex;
justify-content: space-between;
}
nav a {
color: #333;
text-decoration: none;
}
nav a:hover {
text-decoration: underline;
}
#home {
text-align: center;
}
.title {
margin-bottom: 20px;
}
.latest-news ul {
list-style-type: disc;
margin-left: 20px;
}
footer {
background-color: #333;
color: white;
padding: 10px;
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
}
```
这只是一个基础的布局,实际的设计会更复杂,包括响应式设计、图片、更多的交互元素等。你可以根据需要调整样式和内容。
阅读全文