Compare commits
2 commits
cbaa37d1b0
...
178674c0ff
Author | SHA1 | Date | |
---|---|---|---|
178674c0ff | |||
5874e7064f |
3 changed files with 9 additions and 0 deletions
0
public/css/style.css
Normal file
0
public/css/style.css
Normal file
|
@ -6,6 +6,8 @@ const port = 3000;
|
|||
app.set('views', 'src/views');
|
||||
app.set('view engine', 'ejs');
|
||||
|
||||
app.use(express.static('./public'));
|
||||
|
||||
app.use('/', require('./routes'));
|
||||
|
||||
app.listen(port, () => {
|
||||
|
|
|
@ -4,7 +4,14 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<base target="_blank">
|
||||
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<title>Constnium</title>
|
||||
<meta name="author" content="Mylloon">
|
||||
<meta name="description" content="Calculate your constant based on your first name">
|
||||
</head>
|
||||
<body>
|
||||
<hr>
|
||||
|
|
Loading…
Reference in a new issue