Introduction to web development

Niya John
2 min readMar 7, 2018

--

Web programming, also known as web development. It is the creation of dynamic web applications. HTML and CSSare the main languages of modern websites. It can be slightly difficult to approach the concept of text translating into a visual and aesthetic design of the types seen around the web for someone with no programming experience or graphical coding experience. HTML and CSS work together along to encode the constructive design process just detailed.

A website is a text document containing HTML code. Here the blocks of content are programmatically defined. That have some basic default looks and behaviors. CSS is the language used to outline how these elements are to appear which include width, height, background color, borders, text size etc. We can recreate the website by the syntax of HTML code.

There are two broad divisions of web development which include front-end development and back-end development. Front end development also called client-side development.Back-end development also called server-side development.Front-end development refers to constructing what the user sees when they load a web application content, design and how we interact with it. This is done with three codes — HTML, CSS and JavaScript.

HTML, Hyper Text Markup Language is one of the special code for ‘marking up’ text in order to turn it into a web page. Every web page on the net is written in HTML. It will form the backbone of any web application. CSS, short for Cascading Style Sheets, is the main code for setting style rules for the appearance of web pages. CSS have the power for handling the cosmetic side of the web. Then the JavaScript is a scripting language that’s widely used to add functionality and interactivity to web pages.

The main feature of the back-end development controls what goes on behind the scenes of a web application. A back-end uses a database inorder for the generation of the front-end. Web development is an evolving amalgamation of languages that work in concert to receive, modify, and to deliver information between parties using the Internet as a mechanism of delivery.
Here the implementation is accompanied by an overwhelming variety of languages, platforms, templates, frameworks, guidelines, and standards.

For the Navigation of a project from concept to completion often requires more than mastery of one or two complementing languages, meaning today’s developers need both breadth, and depth, of knowledge to be effective.For more

--

--