Username:

Password:

Pages: [1] 2 3

Author Topic: Basic HTML Tutorial?  (Read 3313 times)

chase

  • WebDes1gn Staff
  • Administrator
  • Full Member
  • *****
  • Karma: +100/-0
  • Posts: 110
    • WWW
Basic HTML Tutorial?
« on: July 19, 2009, 11:04:51 AM »
What do you guys think? Would a classic "beginners guide to HTML" be appreciated?  Maybe some webcasts??  Ok, you got me.. I'll try to do some webcast HTML tutorials later today or tomorrow. I make no promises!

soumali

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 2
Re: Basic HTML Tutorial?
« Reply #1 on: September 20, 2009, 02:02:08 AM »
here is some basics of html.....i'll give u more later

HTML markup
HTML markup consists of several key components, including elements (and their attributes), character-based data types, and character references and entity references. Another important component is the document type declaration, which specifies the Document Type Definition. As of HTML 5, no Document Type Definition will need to be specified, and will only determine the layout mode[1].

The Hello world program, a common computer program employed for comparing programming languages, scripting languages, and markup languages is made of 9 lines of code in HTML, albeit Newlines are optional:

<!doctype html>
<html>
  <head>
    <title>Hello HTML</title>
  </head>
  <body>
    <p>Hello World!</p>
  </body>
</html>
This Document Type Declaration is for HTML 5.

If the <!doctype html> declaration is not included, most browsers will render using "quirks mode."[33]

[edit] Elements
See HTML elements for more detailed descriptions.
HTML elements are the basic components for HTML markup. Elements have two basic properties: attributes and content. Each element's attribute and each element's content has certain restrictions that must be followed for an HTML document to be considered valid. An element usually has a start tag (e.g. <element-name>) and an end tag (e.g. </element-name>). The element's attributes are contained in the start tag and content is located between the tags (e.g. <element-name attribute="value">Content</element-name>). Some elements, such as <br>, do not have any content and must not have a closing tag. Listed below are several types of markup elements used in HTML.

Structural markup describes the purpose of text. For example, <h2>Golf</h2> establishes "Golf" as a second-level heading, which would be rendered in a browser in a manner similar to the "HTML markup" title at the start of this section. Structural markup does not denote any specific rendering, but most Web browsers have standardized default styles for element formatting. Text may be further styled with Cascading Style Sheets (CSS).

Presentational markup describes the appearance of the text, regardless of its function. For example <b>boldface</b> indicates that visual output devices should render "boldface" in bold text, but gives no indication what devices which are unable to do this (such as aural devices that read the text aloud) should do. In the case of both <b>bold</b> and <i>italic</i>, there are elements which usually have an equivalent visual rendering but are more semantic in nature, namely <strong>strong emphasis</strong> and <em>emphasis</em> respectively. It is easier to see how an aural user agent should interpret the latter two elements. However, they are not equivalent to their presentational counterparts: it would be undesirable for a screen-reader to emphasize the name of a book, for instance, but on a screen such a name would be italicized. Most presentational markup elements have become deprecated under the HTML 4.0 specification, in favor of CSS based style design.

Hypertext markup links parts of the document to other documents. HTML up through version XHTML 1.1 requires the use of an anchor element to create a hyperlink in the flow of text: <a>Wikipedia</a>. However, the href attribute must also be set to a valid URL so for example the HTML markup, <a href="http://en.wikipedia.org/">Wikipedia</a>, will render the word "Wikipedia" as a hyperlink.To link on an image, the anchor tag use the following syntax: <a href="url"><img src="image.gif" alt="alternative text" width="50" height="50"></a>












Web Site Promotions
Logged

kristy85

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 1
Re: Basic HTML Tutorial?
« Reply #2 on: November 17, 2009, 12:29:55 AM »
Hey..

thanks for posting...
it will be useful for the beginners.

Website Design
Logged

anna008

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 2
Re: Basic HTML Tutorial?
« Reply #3 on: March 29, 2010, 10:57:05 AM »
Let's get started. First, if you have any of them fancy HTML editors and have an inkling to break em in now... forget it. The worst way to learn is to use one of those things. (Although there are a few that you will find helpful, they'll only help you once you learn the basics, so don't even worry about it now.) What's the best way to learn HTML?? Notepad. I know, I know, you got this 9 megabyte Wunder Wizzard that says it's gonna make putting up a web page as easy as scratching your head. Just trust me on this one. K?
..................
free web hosting
Logged

keveenjones

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 3
Re: Basic HTML Tutorial?
« Reply #4 on: March 30, 2010, 03:24:33 AM »

First of all you have to download basic html ebooks and video tutorials from internet. So you can easily understand how html works?. Then you have to download html editor through this editor software you can easily create basic form and you can easily develop small html application and it is very useful to beginner level.
Logged

sjohn

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 4
Re: Basic HTML Tutorial?
« Reply #5 on: June 29, 2010, 10:52:38 PM »
In google you can find easily black book for html tutorial. It is free source book. In this book you can get all details and all tag for html easily and also you can download free html browser software. So through that software and that book you can learn html very easily.

leadmachine

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 6
Re: Basic HTML Tutorial?
« Reply #6 on: July 06, 2010, 07:15:13 AM »
Yes, it is much appreciated. We have to deal with the HTML to help us in many ways. HTML has many benefits in our own website. It can help you access easily to your websites, and also, easier to update the website and maintain pleasingly to the eyes.

jackthomas

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 1
Re: Basic HTML Tutorial?
« Reply #7 on: September 27, 2010, 01:46:32 AM »
HTML, which stands for HyperText Markup Language, is the predominant markup language for web pages. It is written in the form of HTML elements consisting of "tags" surrounded by angle brackets within the web page content. It is the building blocks of all basic websites.

greekpeter

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 4
Re: Basic HTML Tutorial?
« Reply #8 on: September 27, 2010, 11:31:39 PM »
HTML code is comprised of several key elements, including elements (and their attributes), data types based on characters and character references and entity references. Another important element is the document type declaration stating Document Type Definition. Like HTML 5, there will be a Document Type Definition should be specified, and determines the disposition .
Logged

MichMu

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 10
Re: Basic HTML Tutorial?
« Reply #9 on: September 30, 2010, 07:05:34 AM »
Try at w3c school, they have all the documentation you will need
www.w3schools.com
Logged

jameswilliam

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 5
Re: Basic HTML Tutorial?
« Reply #10 on: November 25, 2010, 07:20:52 AM »
HTML stands as Hyper Text Markup Language which helps to make the web applications as per the requirements. Another thing is that there is required to learn the HTML language to learn any other web languages as PHP, .NET and so on.
Logged

racyhall11

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 3
Re: Basic HTML Tutorial?
« Reply #11 on: November 30, 2010, 01:37:06 AM »
HTML means HyperText Markup Language which is the lingua franca of the Internet. It is not a language, so you do not need any programming experience, with HTML you can create your own Web site, and HTML is very simple. The basics of using HTML Basic text tags are italics, bold, center, Headings, Paragraphs, Line Breaks. With the tutorials of it you can learn all about HTML.
Logged

mughees_javed

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 12
Re: Basic HTML Tutorial?
« Reply #12 on: December 08, 2010, 10:54:11 AM »
If you’re doing business on the Internet, learning some basic web design skills is an absolute must. Not only will you have the ability to create your own web pages, but you’ll also save yourself a great deal of money. Selecting an HTML Editor

Although there are many HTML editors available on the Internet, the best editor I’ve found is "1st Page 2000." This powerful editor is great for newbies and experienced webmasters alike, as it can be used in four different modes — Easy, Expert, Hardcore and Normal. You can select which mode you’d like to use depending on your level of experience. Best of all, it’s completely free. http://www.evrsoft.com/

Web pages are created with special codes known as HTML (Hypertext Markup Language). These codes, also referred to as tags, are enclosed by the lesser than (<) and greater than (>) brackets and may be written in capital or lower case letters.

The opening bracket is followed by an element, which is a browser command, and ends with the closing bracket.

Belladesouja

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 4
Re: Basic HTML Tutorial?
« Reply #13 on: January 26, 2011, 09:35:38 PM »
HTML means Hyper Text Markup language. It full form already saying that it was used for web base d application. And  you get tutorial of HTML on w3school site. And these site was specially made for these and on that site you get all type of programming language which any one want to learn.
Logged

vancuper

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 5
Re: Basic HTML Tutorial?
« Reply #14 on: February 09, 2011, 11:42:42 PM »
HTML Basic text tags are italics, bold, center, Headings, Paragraphs, Line Breaks. With the tutorials of it you can learn all about HTML. Hypertext markup links parts of the document to other documents. HTML editors available on the Internet.
Pages: [1] 2 3