!DOCTYPE html> Fish Creek Shop

Shop at Fish Creek

Tote Picture

Carry your pet supplies and accessories in a special tote from Fish Creek. 100% cotton. $14.95

A Fish Creek sweatshirt will warm you up on cool morning walks with your pet. 100% cotton. Size XL. $29.95

Order Now Order Shirt Shirt Picture
- shopping_website - public - images - tote.jpg - shirt.jpg - css - style.css - js - script.js - views - index.html - order_shirt.html - order_pants.html - server.js - package.json Fish Creek Shop

Shop at Fish Creek

Tote Picture Order Shirt Order Pants
const express = require('express'); const app = express(); const path = require('path'); app.use(express.static(path.join(__dirname, 'public'))); // Routes app.get('/', (req, res) => { res.sendFile(path.join(__dirname, 'views', 'index.html')); }); app.get('/order_shirt', (req, res) => { res.sendFile(path.join(__dirname, 'views', 'order_shirt.html')); }); app.get('/order_pants', (req, res) => { res.sendFile(path.join(__dirname, 'views', 'order_pants.html')); }); const PORT = process.env.PORT || 3000; app.listen(PORT, () => { console.log(`Server running on port ${PORT}`); }); { "name": "shopping_website", "version": "1.0.0", "description": "A simple shopping website", "main": "server.js", "dependencies": { "express": "^4.17.1" } }