Tag: web development

  • PROJECT 1 FOR YOUR RESEME

    by

    in

    Making a quora replica:- make a file on vscode by name index.html,code:- const express=require(“express”); const app=express(); let port=3000;; const path=require(“path”); const {v4 : uuidv4}= require(‘uuid’); const methodOverride=require(“method-override”); app.set(“view engine”,”ejs”); app.set(“views”,path.join(__dirname,”/views”)); app.use(express.static(path.join(__dirname,”public”))); app.use(express.urlencoded ({extended : true })); app.use(methodOverride(“_method”)); let posts=[{     id:uuidv4() ,     username:”rohit”,     content:”i love coding” },{id:uuidv4(),     username:”raj”,…

  • HTML KEYWORDS

    1)<p></p>(this is called paragraph tag. This is used to write paragraph). 2)<div></div>(this tag is used to create a specific box). 3)<br>(this is break tag , it is used to create a break between 2 lines). 4)<b></b>(this is a bold tag to create a bold text in certain lines). 5)<button></button>(this is a button tag, used to…

  • HOW TO BECOME A WEB DEVELOPER

    Importance of learning web developement Web development has become a highly important field in today’s tech-driven world. It offers a wide range of job opportunities and a promising career path. The best part is, even if you don’t come from a technical background—like B.Tech or computer science—you can still build a successful career in web…