Skip to content

Latest commit

 

History

History
57 lines (34 loc) · 1.78 KB

Lecture_1_Notes.md

File metadata and controls

57 lines (34 loc) · 1.78 KB

Basics Of Web Development

  • What is Web Development?

First, we understand

⭐ What is Web

  • Web is a system in the form of document that are inter-connected with each other.

Now, we will take a look on

⭐ What is Development

  • Development is an entity that you can create Websites or Web Application.

Note: Website and Web Application both are different things

⭐ Website or WebPages have a static content that used in the starting of internet for read only purpose.

  • For Example: Wikipedia/Blogs pages are static content/data. (Whenever you refresh the website that shows you same content it is called static content)

⭐ Web Application have a static content that gives you feature to interact

  • For Example: LinkedIn/Twitter are dynamic content. (Whenever you refresh the web app you will get new data)

In-Short:

  • Static content gives you same data every time
  • Dynamic content gives you different/new data

⭐ Web Application have 3 different layers:

  • FrontEnd/UI(User Interface) - Front End portion of the site that users see and interact.

HTML/CSS/JavaScript + React

  • BackEnd - BackEnd is a brain of your Web-App.
    Let's take an example to understand this: Think about if you playing Tic Tac Toe, How the system knows that 3 circles in straight line gives you 1 point🤔?

    There is a some logics behinds it in the backend part that allows system to give suitable reaction.

  • DB Layer - DB layer is Database.

NO SQL(Mongo DB), SQL, Relational Database