DEV Community

Cover image for Intro to web development(a series) HTML5 to
black_panda
black_panda

Posted on • Updated on

Intro to web development(a series) HTML5 to

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

Top comments (0)