HTML stands for "Hyper Text Markup Language". HTML used to create a static Web page.The Combination of Static web pages is called static website. There are no Database Connectivity.
It's not a case sensitive .We can Connect two Web pages with use of Link. Tags is important Part in HTML.
There are Two Types of HTML Tags :
1. (a) Open tag (<html>) . call start tag.
(b)Close tag (</html>). call end tag.
2. Empty tag (<br>).
 |
HTML Tags |
It's a basic level to Know about Websites. Websites are two Type:
1. Static website : These type of Website create on html without database connectivity.
2. Dynamic website : These type of Website create with database connectivity.
In the static website, You can manage data Statically, because there is no database connectivity.
In the Dynamic website, You can manage data dynamically, because there is database connectivity.
How can write html codes?
HTML is not a programing language. it is a set of code that defines the content of a web page so that they can be displayed by the web browser. To write html code , we need code Editor like Notepad , Notepad++ , Sublime , Dreamweaver etc.
Step :1 Open Code Editor .
Step :2 Write codes
Syntax: The basic HTML syntax shown on below.
<html>
<head>
<title>
Page title
</title>
</head>
<body>
Body content ( e.g. Hello world )
</body>
</html>
Step :3
save this file with Extension ( .html ). for example : File.html .