Web Development

web development
web development

Definition of web development

Web development is the work involved in developing a Web site for the Internet or an intranet. Web development can range from developing a simple single static page of plain text to complex web applications, electronic businesses, and social network services.

There are always more skills to add to your resume: HTML, JavaScript, and CSS are the basic skills that you can’t do without as a web developer. Web development is amongst those jobs that have a significantly higher job satisfaction rate.

How do I become a web developer?

How to become a Web Developer in five steps:

  1. Learn web fundamentals.
  2. Choose a development specialization.
  3. Learn key programming languages for web dev.
  4. Work on projects to develop your web developer skills.
  5. Build a web dev. portfolio.

What are 3 types of web developments?

  1. The Front-End Developer (aka Front-End Engineer aka “web Developer / Designer”)
  2. The Back-End Developer (aka the person no one really knows about)
  3. The Full-Stack Developer (aka the Superman / Superwoman)

The Front-End Developer 

  1. HTML
  2. CSS
  3. JavaScript
  4. JQuery
  5. React
  6. AngularJS

The Back-End Developer 

  1. Java
  2. PHP
  3. Ruby and Ruby On Rails
  4. C#
  5. MySQL
  6. MongoDB

The Full-Stack Developer 

Typical programming languages a full-stack developer writes in:

  • Some of everything!

What is a Web developer do?

Web developers create and maintain websites. They are also responsible for the site’s technical aspects, such as its performance and capacity, which are measures of a website’s speed and how much traffic the site can handle. In addition, web developers may create content for the site.

HTML

The Hyper-Text Markup Language, or HTML is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript. Here is an example of HTML used to define a basic webpage with a title and a single paragraph of text.HTML is the standard markup language for Web pages. It is widely used language on the web. It is easy to learn. 

What is HTML used for?

HTML is the language for describing the structure of Web pages. HTML gives authors the means to: Publish online documents with headings, text, tables, lists, photos, etc. Retrieve online information via hypertext links, at the click of a button.

HTML was created by Berners-Lee in late 1991 but “HTML 2.0” was the first standard HTML specification which was published in 1995. 

Syntax is the arrangement of elements and attributes to create well-formed documents. In HTML, this is the purpose of elements and attributes, and the logical (sense and reference) relationship between elements and the attributes of those elements.

How do I start HTML code?

<html> : Every html code must be enclosed between basic HTML tags. It begins with <html> and ends with </html> tag

What are the basic HTML tags?

  1. <html></html> This is the root element tag.
  2. <head></head> …
  3. <title></title> …
  4. <body></body> …
  5. <h1></h1> …
  6. <p></p> …
  7. <a></a> …
  8. <img></img>

CSS

Cascading Style Sheets is a style sheet language used for describing the presentation of a document written in a markup language such as HTML. CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript.

CSS is designed to enable the separation of presentation and content, including layout, colors, and fonts. This separation can improve content accessibility, provide more flexibility and control in the specification of presentation characteristics, enable multiple web pages to share formatting by specifying the relevant CSS in a separate .CSS file which reduces complexity and repetition in the structural content as well as enabling the .CSS file to be cached to improve the page load speed between the pages that share the file and its formatting.