Web Technology
To make a dynamic website we have to study these following things:-
1)HTML
2)CSS
3)JAVASCRIPT
4)BOOTSTRAP
5)PHP
HTML:-
HTML Stands for hypertext markup language.
With the help of HTML you can create your Website.
HTML is easy to learn.
HTML describes the structure of Web pages.
HTML describes the structure of Web pages.
Example of HTML
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
</head>
<body>
<h1> Heading</h1>
<p>paragraph.</p>
</body>
</html>
Explaination of tags in HTML
- The
<!DOCTYPE html>
declaration defines this document in html page.
- The
<html>
element is the root element .
- The
<head>
element contains meta information.
- The
<title>
element specifies a title.
- The
<body>
element contains the visible content of page.
- The
<h1>
element defines a large heading of page
- The
<p>
element defines a paragraph in page.
No comments: