Posts

Showing posts from July, 2020

basic html and css practice 1st day code repo

Image
 basic HTML and CSS for respective files๐Ÿ’ช๐Ÿ’ช๐Ÿ’ช๐Ÿ’ช๐Ÿ’ช๐Ÿ’ช๐Ÿ“ฎ๐Ÿ“ฎ๐Ÿ“ฎ HTML CODE     <! DOCTYPE   html > < html > < head >        < img   class = "logo1"   id = "logo1"   src = "logo.jpg"   alt = "logo"   >      < link   rel = "stylesheet"   href = "styles.css" >      < meta   name = "viewport"   contents = "width = device-width,initial-scale=1.0" > </ head > < body > < div   class = "bd1" >     The body text or body copy is the text forming the main content of a book,      magazine, web page, or any other printed or digital work. This is as a contrast to both      additional components such as headings, images, charts, footnotes etc.      on each page, and also the pages of front matter that form the introduction to a book.     The body text or body copy is the text forming the main content of a book, magazine, web page,      or any other printed or digit

My first MERN code

Hello Bishal from Learn Code In Nepali, l'll the possible tutorials for MEAN development basically this is my personal repo for all the code and you can use these code for learning purpose .  i will try to write what code will do in NEPALI language by using the comment . First code ; this will be code from index.js file of first lesson  const   express  =  require ( "express" ); const   app  =  express (); // const port = 3000 // app.get('/', (req, res) => res.send('Hello World!')) // app.listen(port, () => console.log(`Example app listening at http://localhost:${port}`)) const   port  = 3639 ; app . get ( '/' ,( req ,  res  )  =>  {      // callback method doesnt have the name but work just as an method      return   res . send ( "hello there" ); }) app . get ( '/login' ,( req ,  res  )  =>  {      // callback method doesnt have the name but work just as an method      return   res . send ( "login page " )