The purpose of a web browser (Chrome, IE, Firefox, Safari) is to read HTML documents and display them.
The browser does not display the HTML tags, but uses them to determine how to display the document...
This is default featured slide 1 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 2 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 3 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 4 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
This is default featured slide 5 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
Html Use br,pre and hr Tag
By Santanu 10:58 PM

HTML LINE BREAKS
The HTML <br> element defines a line break.
Use <br> if you want a line break (a new line) without starting a new paragraph.
The <br> tag is an empty tag, which means that it has no end tag.
CODE
<p>This is<br>a paragraph<br>with line breaks.</p>
VIEW
HTML <PRE> ELEMENT
The...
Html Use Attribute
By Santanu 10:52 PM
LANG ATTRIBUTE
The language of the document can be declared in the <html> tag.
The language is declared with the lang attribute.
Declaring a language is important for accessibility applications (screen readers) and search engines
Code
<!DOCTYPE html>
<html lang="en-US">
<body>
...
...
...
</body>
</html>
Title Attribute
a title attribute is added to the <p> element....
HTML Use Paragraphs,Links and Images
By Santanu 10:52 PM

HTML PARAGRAPHS
HTML paragraphs are defined with the <p> tag
Code
<p>This is a paragraph.</p>
Output
HTML LINKS
HTML links are defined with the <a> tag
Code
<a href="http://webtech100.blogspot.com/">This is a link</a>
Output
HTML IMAGES
HTML images are defined with the <img> tag.
The...
HTML Use Headings
By Santanu 10:50 PM

HTML headings are defined with the <h1> to <h6> tags.<h1> ---------- >>>> defines the most important heading. . . .<h6> ---------- >>>> defines the least important heading.
Example
<h1>This is heading 1</h1><h2>This...
Save and Open the HTML Page
By Santanu 10:48 PM

Save the file on your computer. Select File > Save as in the Notepad++ menu.
Name the file "Simple.html" and
You can use either .htm or .html as file extension Name. There is no difference, it is up to you.
VIEW THE HTML PAGE IN YOUR WEB-BROWSER
Open the saved HTML file in your favorite Web-Browser (double...
Write HTML Using Notepad or Notepad++
By Santanu 10:45 PM

Follow the four steps below to create your first web page with Notepad or Notepad++.
Step 1: Open Notepad or Notepad++
Open Notepad or Notepad++ in Windows 98,Windows xp,Windows 7,Windows 8,Windows 10 or later:
Open the Start Screen (the window symbol at the bottom left on your screen). Type Notepad or Notepad++.
Open Notepad...
Html Tag Explained
By Santanu 10:43 PM
EXPLAINED TAG :
The start tag is also called the opening tag, and the end tag the closing tag.
The <!DOCTYPE html> declaration defines this document to be HTML5.
The text between <html> and </html> describes an HTML document.
The text between <head> and </head> provides information about the document.
The text between <title> and </title> provides...
HTML Versions & Structure
By Santanu 10:42 PM

Since the early days of the web, there have been many versions of HTML:
HTML PAGE STRUCTURE
Below is a visualization of an HTML page structure:
...
WHAT IS HTML?
By Santanu 10:40 PM

HTML IS A MARKUP LANGUAGE FOR DESCRIBING WEB DOCUMENTS(WEBPAGES).
1. HTML STANDS FOR HYPER TEXT MARKUP LANGUAGE
2. A MARKUP LANGUAGE IS A SET OF MARKUP TAGS
3. HTML DOCUMENTS ARE DESCRIBED BY HTML TAGS
4. EACH HTML...