请用Node.js的express写一段代码创建一个网页,并且这个网页需要用到一个单独的css文件。请把Node.js代码,html代码以及css代码都发给我
时间: 2023-03-29 18:00:28 浏览: 78
基于Node.js和Express的静态网页设计源码
以下是Node.js的express代码:
```javascript
const express = require('express');
const app = express();
app.use(express.static('public'));
app.get('/', function(req, res) {
res.sendFile(__dirname + '/index.html');
});
app.listen(300, function() {
console.log('Server is running on port 300');
});
```
以下是HTML代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>Welcome to my website!</h1>
<p>This is a paragraph.</p>
</body>
</html>
```
以下是CSS代码:
```css
body {
background-color: lightblue;
}
h1 {
color: white;
text-align: center;
}
p {
font-family: verdana;
font-size: 20px;
}
```
请注意,以上代码仅供参考,您需要根据自己的需求进行修改。
阅读全文