1
Internet / Re: HTML knowledge
« on: December 14, 2017, 03:41:01 PM »
About HTML:
HTML is hypertext markup language which is used for creating web pages and web applications. HTML developed by Tim Berners-Lee in 1990. By using special text called hyperlinks, you can move from one page to another on the web.
You have to use HTML tags, which is surrounded by angle brackets. For example: <P> Content </p>
Here is the basic design to create an HTML page.
<html>
<head>
<title>Title</title>
</head>
<body>
<h1>First Heading</h1>
<p>first paragraph.</p>
</body>
</html>
HTML is hypertext markup language which is used for creating web pages and web applications. HTML developed by Tim Berners-Lee in 1990. By using special text called hyperlinks, you can move from one page to another on the web.
You have to use HTML tags, which is surrounded by angle brackets. For example: <P> Content </p>
Here is the basic design to create an HTML page.
<html>
<head>
<title>Title</title>
</head>
<body>
<h1>First Heading</h1>
<p>first paragraph.</p>
</body>
</html>