শনিবার, ১২ মার্চ, ২০১৬
The <head> tag
You may guess from title what I tried to mean.
the < head> tag refers to the head data of web page like title, metadata etc.
you will find it just after the < html> tag.
so the code will be like:
< html>
< head>.......< /head>
< /html>
Basic HTML tags
Every HTML documents starts with a tag like: < !DOCTYPE html> .
The HTML document itself begins with <html> and ends with </html> .
The visible part of the HTML document is between <body> and </body> .
Example:
< !DOCTYPE html>
< html>
< body>
< p> My first paragraph. < /p>
< /body >
< /html>
The Web Structure
HTML is very essential for any web developer.
If you know HTML, you can get entrance on web family.
This is the basic Language of any web page.
HTML: Structure
CSS: Presentation
JavaScript: Behavior
PhP: Backend
CMS: Content Management
What is HTML
HTML (Hypertext Markup Language) is the set of markup symbols or codes inserted in a file intended for display on a World Wide Web browser page.
The markup tells the Web browser how to display a Web page's words and images
for the user.
Each individual markup code is referred to as an element (but many people also
refer to it as a tag ).
Some elements come in pairs that indicate when some display effect is to
begin and when it is to end.