?What is DOCTYPE in HTML? Every HTML page needs it’s own document type declaration. DOCTYPE tells that which syntax suits for this HTML page. So it is very much important to choose right doctype for your page. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> The above Doctype is being used more commonly. This tell that your HTML document is?HTML 4.01 Strict.?For HTML5 the doctype will be just?<!DOCTYPE> <!DOCTYPE> So it’s a very much important things to wok with HTML page. …
Blog Posts
Few sample doctype of HTML and XHTML HTML 2.0 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0 Level 2//EN"> <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML Level 2//EN"> HTML 3.0 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3.0//EN"> HTML 3.2 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> HTML 4.01 Strict <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> HTML 4.01 Frameset <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" …
Microsoft’s Outlook.com Email? July 31 was the date to make the table hot by Microsoft. Since many days they wanted to make them on the discussion table. And at last they just made it by their newly introduced Outlook.com email [YourName@outlook.com]. At first day over 1 million users have signed up for their outlook.com email and Microsoft claims that this is the biggest fight with Gmail by Microsoft while Gmail has 425 million users and?Hotmail had more than 350 million …
?Interactive signature with Gmail email? Sometimes you want to add few of your info with each of your email sent to others. And again and again to customize or add the info with each email is just boring. That’s why most of the email providers has ‘Signature of Senders’ option with their email interface. Let’s see how- First go to your gmail and then click on Email settings icon (see image below) and then click on setting.. ?Now go to …
Now a days web development is a buzzing word. And numerous people are searching for learning HTML. See the trends of tutorial and html?. That’s why I want to write some tutorial about HTML. ?Getting Started with HTML? To start writing HTML code you should basically know few HTML tag (i.e: <html><head><title><body>) ?Basic Structure of HTML Page? To design any HTML page you should follow the basic structure of a html page. Like follow: <html> <head> <title>Website of Shaharia …