Learning HTML |
| |
|
|
|
Regular Coder Gender:  Posts: 64 Topics: 20
|
|
|
November 19, 2008, 07:12:42 AM
|
|
Introduction to HTML. * HTML stands for Hyper Text Markup Language. * HTML file is a text file containing small Markup tags. * The Markup tags tell the Web browser how to display the page. * HTML file must have an html file extension. * HTML file can be created using a simple text editor.
HTML Tutorial!
* If you are running Windows, start Notepad. If you are on a Mac, start Simple Text.
* There is no need to change anything in Notepad if you are running Windows.
* In OSX start Text Edit and change the following preferences:
* Open the the Format menu and select Plain text instead of Rich text.
* Then open the Preferences window under the Text Edit menu and select Ignore rich text commands in HTML files.
* Your HTML code will probably not work if you do not change the preferences above.
Copy & Paste the following in your text file. <html> <head> <title>Title of page</title> </head> <body> This is my first homepage. <strong>This text is bold</strong> </body> </html>
* Save the file as mypage.html.
* Now, right click on mypage.html.
* Select Open With and click on Internet Explorer or Mozilla Firefox.
* Now your page will be displayed on your Web Browser.
Understanding HTML
* The first tag in your HTML document is <html>. This tag tells your browser that this is the start of an HTML document.
* The last tag in your document is </html>. This tag tells your browser that this is the end of the HTML document.
* The text between the <head> tag and the </head> tag is header information. Header information is not displayed in the Browser Window.
* The text between the <title> tags is the title of your document. The title is displayed in your Browser's caption.
* The text between the <body> tags is the text that will be displayed in your Browser.
* The text between the <strong> and </strong> tags will be displayed in a Bold font.
« Last Edit: August 07, 2010, 05:58:25 PM by darkpassenger »
|
|
| |
|
|
|
Code Guru Gender:  Posts: 1399 Topics: 85
|
|
|
November 20, 2008, 05:19:10 AM
|
Very nice introduction - thanks for posting this  I would also say that the tutorials at W3 schools is a good one to start from http://www.w3schools.com/html/default.aspWhat other tutorials do people use?
|
|
| |
|
Computer Head in 'da House! Activity
|
|
Regular Coder Posts: 85 Topics: 9
|
|
|
January 01, 2010, 01:22:13 PM
|
Very nice article.  This is a good basic introduction to HTML for the novice.
|
|
| |
|
|
|
Regular Coder Posts: 99 Topics: 3
|
|
|
February 17, 2010, 10:00:32 PM
|
|
Nice introduction to HTML... I learn much in w3school... best source so far...
|
|
| |
|
|
|
New Poster Posts: 1 Topics: 0
|
|
|
August 04, 2010, 09:40:24 PM
|
|
Hi this is Nicole Anderson, Introduction about HTML what to you mentioned its very useful for the freshers. _____________________________________________________________________________
Discover the hidden source of targeted traffic that unearths eager buying customers, drives them straight to your site, and literally explodes your profits almost overnight at just simple click unique article wizard.
|
|
| |
|
|
|
New Coder
Location: USA
Gender:  Posts: 37 Topics: 3
|
|
|
August 05, 2010, 04:23:58 AM
|
|
Unless I’m mistaken the <b> tag been depreciated in favor of the <strong> tag. The <i> or ‘italics’ tag was also replaced by the <em> tag.
|
|
| |
|
|
|
New Coder
Location: Australia
Gender: 
Age: 22
Posts: 42 Topics: 1
|
|
|
August 06, 2010, 02:52:58 AM
|
|
Pretty sure <b> and <i> are deprecated. They should be replaced with <strong> and <em> respectively. EDIT: I've updated the first post in this thread to reflect the change in standards.
« Last Edit: August 07, 2010, 05:56:48 PM by darkpassenger »
|
|
| |
|
|
|
Regular Coder Posts: 91 Topics: 4
|
|
|
April 03, 2011, 03:08:48 AM
|
|
I was introduced to W3shools and I am having good time creating my own so called WebPages. I am waiting for an opportunity to upload the same once it is complete.
|
|
| |
|
|
|
Skilled Coder Posts: 125 Topics: 0
|
|
|
April 05, 2011, 01:47:48 AM
|
|
Nice introduction of HTML. I would like to suggest w3school for more Knowledge of HTML. You can find number of articles, Tutorial and Example on it.
|
|
| |
|
|
|
Professional Coder Gender:  Posts: 242 Topics: 3
|
|
|
May 28, 2011, 06:32:22 AM
|
|
nice one! this is a good post..
|
|
| |
|
|
|
New Poster Posts: 4 Topics: 0
|
|
|
November 03, 2011, 08:39:10 AM
|
|
nice sharing of HTML
« Last Edit: November 09, 2011, 10:18:12 PM by Admin »
|
|
| |
|
|
|
New Poster Posts: 4 Topics: 0
|
|
|
January 04, 2012, 10:19:08 AM
|
|
It's quite enough to know basics of HTML to write your webpage. hxxp: web-design-lessons. com/articles/article/1/7
|
|
| |