Skip to content

Commit 0fd3d49

Browse files
committed
added notes page to keep track of subject
1 parent 10de6bc commit 0fd3d49

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

notes.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
_============================================_
2+
Front-end vs Back-end development
3+
_============================================_
4+
5+
We visit a page, the browser sends a request to the web server where the website is hosted, the server then sends a response with all of the files requested. It responds with html, css, and javascript, which are the core web technologies. The browser then renders the website with the provided files.
6+
7+
The process of writing html, css, and js is called front-end development. When the files are simply stored on the server a request will return a static website.
8+
9+
When you visit a dynamic website the request is sent to a server where the website is hosted, not just stored. Web apps store and maitain a larger amount of features to store in such things as a database. Applications that are executed on the backend will use nodejs or python that will take the request and assemble the proper response on the server. Everytime you visit the website a new version will be assembled and sent.
10+
11+
The files are sent as before and the browser renders the site in the same way.
12+
13+
_============================================_
14+
The three languages
15+
_============================================_
16+
17+
HTML is the content of the webpage. CSS is the styling of that content on the page. JS is the dynamic effects and data of the webpage.
18+
19+
_============================================_
20+
21+
_============================================_

0 commit comments

Comments
 (0)