Website Development

 Important technology which are essential for Website Development are Given below:-

For Frontend:

  • HTML
  • CSS
  • JAVASCRIPT
  • JQUERY,ANGULAR,REACT JS ETC.
For Backend:
  • PHP
  • Node.js
  • Django etc.         

For Database

  • MongoDB
  • Mysql
  •  Postgresql etc.        

What is HTML?

Html is the Hyper Text Markup Language . This is the Skeleton of web pages. Also we can say this is the basic building blocks of website development. The first version of html is written by Tim Berners-Lee in 1993.



Fundamental Structure of HTML:-

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>

Here,<html>,<head>,<title>,<h1>,<p>,<body> are the tags. In html all are tags. Tags has their own properties. I will discuss about all the important tags in upcoming blogs.

CSS (Cascading style sheet):

It is the most important technology for website development .Because it provides muscles in skeleton html code. That's means this helps to decorate our website pages for good looking.

This helps to design our web pages. It has too many features that helps to make mobile responsive website.




CSS can be added to HTML documents in 3 ways:

  • Inline - by using the style attribute inside HTML elements
  • Internal - by using a <style> element in the <head> section
  • External - by using a <link> element to link to an external CSS file

Basic Syntax:

{

  color: red;
  text-align: center;
}

JavaScript:
            JavaScript is a programming Language which basically use in Html Codes to make User Interface with functionality. This helps to make beautiful website with more functionality. We can also use JavaScript framework to best UI design with click Events like React Js etc.





Example:
<body>
<script>
document.getElementById("demo").innerHTML = "Hello JavaScript!";
</script>
<noscript>Sorry, your browser does not support JavaScript!</noscript>
</body>

All Above about website development. Basically these are FrontEnd Development.I will Discuss about Backend in upcoming Blogs. Thankyou.