HTML Formatting

You may be familiar with some of the formatting options that are available in word processing applications such as Microsoft Office, and desktop publishing software such as QuarkXpress. Well, many of these formatting features are available in HTML too! This lesson contains some of the more common formatting options.
Read more…

HTML Elements

HTML elements are the fundamentals of HTML. HTML documents are simply a text file made up of HTML elements. These elements are defined using HTML tags. HTML tags tell your browser which elements to present and how to present them. Where the element appears is determined by the order in which the tags appear.

HTML consists of almost 100 tags. Don't let that put you off though - you will probably find that most of the time, you only use a handful of tags on your web pages. Having said that, I highly recommend learning all HTML tags eventually - but we'll get to that later. 
OK, lets look more closely at the example that we created in the previous lesson.
********************
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>HTML Tutorial Example</title>
</head>
<body>
<p>Less than 5 minutes into this HTML tutorial and
I've already created my first homepage!</p>
</body>
</html>
*****************
Explanation of the above code: 
  • The <!DOCTYPE... > element tells the browser which version of HTML the document is using.
  • The <html> element can be thought of as a container that all other tags sit inside (except for the !DOCTYPE tag).
  • The <head> tag contains information that is not normally viewable within your browser (such as meta tags, JavaScript and CSS), although the <title> tag is an exception to this. The content of the <title> tag is displayed in the browser's title bar (right at the very top of the browser).
  • The <body> tag is the main area for your content. This is where most of your code (and viewable elements) will go.
  • The <p> tag declares a paragraph. This contains the body text.

Read more…

What is HTML?

HTML is a language for describing web pages.
  •     HTML stands for Hyper Text Markup Language
  •     HTML is a markup language
  •     A markup language is a set of markup tags
  •     The tags describe document content
  •     HTML documents contain HTML tags and plain text
  •     HTML documents are also called web pages

Read more…

Drop Down List

Drop Down List အတြက္ျဖစ္ပါတယ္။

<form><select onchange="window.open(this.options[this.selectedIndex].value,'_blank')" style="width: 170px;">
<option>နည္းပညာဆိုင္ရာလင့္မ်ား<!-- change the links with your own --></option>
<option value="http://mmcmsteam.blogspot.com/search/label/Tutorials"> Tutorials </option>
<option value="http://mmcmsteam.blogspot.com/search/label/Joomla30"> Joomla30 </option>
<option value="http://mmcmsteam.blogspot.com/search/label/Joomla%20Security"> Joomla Security </option>
</select></form>
Read more…