Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632120 Views

Latest files of /cody/Khushigupta8/Hotel-Management-Webpage

node_modules/ cody/Khushigupta8/Hotel-Management-Webpage/node_modules/
62 Items
  • merge-descriptors/
  • http-errors/
  • content-disposition/
  • finalhandler/
  • proxy-addr/
  • encodeurl/
  • depd/
  • define-data-property/
  • README.md cody/Khushigupta8/Hotel-Management-Webpage/README.md
    192 Views
    0 Comments
    # Hotel-Management-Webpage
    Hotel Booking Webpage: Dive into the world of HTML, CSS, and a touch of JavaScript with this college mini project. Explore room booking, sleek design, and more! #WebDevelopment #HTML #CSS #JavaScript"
    Welcome to my first web development project Hotel management webpage!

    ## Overview

    This project was created when I was just starting to learn web development. The website serves as a basic representation of a fictional room booking systum. It's a static site built with HTML CSS and
    package.json cody/Khushigupta8/Hotel-Management-Webpage/package.json
    144 Views
    0 Comments
    {
    "name": "khushi",
    "version": "1.0.0",
    "description": "",
    "main": "server.js",
    "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "node server.js"
    package-lock.json cody/Khushigupta8/Hotel-Management-Webpage/package-lock.json
    147 Views
    0 Comments
    {
    "name": "khushi",
    "version": "1.0.0",
    "lockfileVersion": 3,
    "requires": true,
    "packages": {
    "": {
    "name": "khushi",
    index.html cody/Khushigupta8/Hotel-Management-Webpage/index.html
    280 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">

    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Broadway Inn</title>

    server.js cody/Khushigupta8/Hotel-Management-Webpage/server.js
    136 Views
    0 Comments
    const express = require('express');
    const path = require('path');
    const bodyParser = require('body-parser');

    const app = express();
    const hostname = '127.0.0.1';
    const port = 3000;
    const index = path.join(__dirname, 'index.html');