Intro to web development(a series) HTML5 to

Intro to web development(a series) HTML5 to

ยท

2 min read

Web development in simply the process of creating a website, it can be divided into:

  1. frontend (client side) and
  2. backend (server side).

The frontend deals with what the user sees and what the user will experience, we use languages like:

  • HTML5, XML (for structure and data collection)
  • CSS (for the design) and
  • JavaScript (for sending request and Making the website more dynamic).

the backend deals with the storage and manipulation of data based on requests sent by the frontend, we use languages like:

  • php
  • python
  • C#
  • dart
  • java
  • we also use runtime environments like node.js.
.

HTML 5

HTML img We will be looking at HTML5 which is hyper text markup language, it is used to create the structure of the website, it is the foundation of a website, it makes use of tags for it's syntax e.g

<p> hello </p>

The series will continue....
Edited: Part 2 - intro to HTML