What is web development? What is the Web How the Web works Front end and server side
Web development mainly refers to building an environment on the Web server side.
WWW is an abbreviation for World Wide Web, which stands for "spider web". A system that uses HTML documents that are standard on the Internet and intranets. You can use information such as text, images, videos, and music. Pages created using the Web are called "Web pages" and "Web sites".
Software and computers that publish information on the Web are called Web servers, and those that receive information from Web servers are called Web clients. It consists of delivering information such as text, images, videos, and music from the server to the client via the Internet.
When publishing a simple website, we create the front side with HTML / CSS and rent a rental server to publish it.
The front end refers to the interface with the client, and the representative languages are HTML, css, and javascript.
HTML HTML (Hyper Text Markup Language) is one of the markup languages created to create Web pages. Hypertext can be displayed on a browser by embedding text information or embedding a *** hypertext link ***. https://qiita.com/yousuke_asami/items/a18778d7380d2438b1ab
css CSS (Cascading Style Sheets) is a language for specifying styles, and you can decorate marked-up tags.
javascript An object-oriented scripting language developed for interactive expression on the WEB, where you can add movements, etc.
The server side is where data is exchanged from the front end, and Java, PHP, Ruby, etc. are typical languages. Recently, server-side development using javascript is also progressing, and there are Node.js, React, Ajax, etc.
Recommended Posts