* feat: remove instructions and hyperdev * fix: remove mongoose, change declaration, add dotenv * remove header and footer
35 lines
974 B
HTML
35 lines
974 B
HTML
<!-- This is a static file -->
|
|
<!-- served from your routes in server.js -->
|
|
|
|
<!-- You might want to try something fancier: -->
|
|
<!-- html/nunjucks docs: http://mozilla.github.io/nunjucks/ -->
|
|
<!-- jade: http://jade-lang.com/ -->
|
|
<!-- haml: http://haml.info/tutorial.html -->
|
|
<!-- hbs(handlebars): http://handlebarsjs.com/expressions.html -->
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>MongoDB & Mongoose | freeCodeCamp.org</title>
|
|
<link
|
|
rel="shortcut icon"
|
|
href="https://cdn.freecodecamp.org/universal/favicons/favicon-32x32.png"
|
|
type="image/x-icon"
|
|
/>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<style>
|
|
body {
|
|
background-color: #ddd;
|
|
color: #333;
|
|
font-family: sans-serif;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>MongoDB & Mongoose</h1>
|
|
</body>
|
|
</html>
|