Website Development
Important technology which are essential for Website Development are Given below:-
For Frontend:
- HTML
- CSS
- JAVASCRIPT
- JQUERY,ANGULAR,REACT JS ETC.
- 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:
p {
color: red;text-align: center;
}
document.getElementById("demo").innerHTML = "Hello JavaScript!";
</script>
<noscript>Sorry, your browser does not support JavaScript!</noscript>
0 Comments
if you have any doubt ,please let me know