Tag: SOFTWARE DEVELOPER
-
PROJECT 1 FOR YOUR RESEME
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”,…
-
STEPWISE TOPIC TO LEARN FOR BEACOMING A SOFTWAEW DEVELOPER
1)HTML 2)CSS 3)JAVA SCRIPT 4)GIT AND GITHUB 5)EXPRESS 6)NODE.JS 7)EJS 8)SQL 9)NODE.JS WITH SQL 10)MONGODB 11)REACT
-
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…