PC Game of the Year
Call of Duty 4: Modern Warfare
PC Top 10 Games of the Year
1. Call of Duty 4: Modern Warfare
2. The Orange Box
3. BioShock
4. Galactic Civilizations II: Dark Avatar
5. World of Warcraft: The Burning Crusade
6. The Lord of the Rings Online: Shadows of Angmar
7. World in Conflict
8. Crysis
9. Sam & Max: Season 1
10. The Witcher
PC Action Game of the Year
Call of Duty 4: Modern Warfare
PC Adventure of the Year
Sam & Max: Season 1
PC Best Strategy Game of the Year
World in Conflict
PC Expansion of the Year
Galactic Civilizations II: Dark Avatar
PC MMO Game of the Year
The Lord of the Rings Online: Shadows of Angmar
PC Multiplayer Game of the Year
The Orange Box
PC RPG Game of the Year
The Witcher
Sunday, January 13, 2008
For all PC gamers
jam
2:31 AM
Diposting oleh
prazapreza2
3
komentar
Thursday, January 10, 2008
HTML Tags
Try it Yourself - Examples
A very simple HTML document
This example is a very simple HTML document, with only a minimum of HTML tags. It demonstrates how the text inside a body element is displayed in the browser.
Simple paragraphs
This example demonstrates how the text inside paragraph elements is displayed in the browser.
(You can find more examples at the bottom of this page)
________________________________________
Headings
Headings are defined with the <h1> to <h6> tags. <h1> defines the largest heading. <h6> defines the smallest heading.
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
<h4>This is a heading</h4>
<h5>This is a heading</h5>
<h6>This is a heading</h6>
HTML automatically adds an extra blank line before and after a heading.
________________________________________
Paragraphs
Paragraphs are defined with the <p> tag.
<p>This is a paragraph</p>
<p>This is another paragraph</p>
HTML automatically adds an extra blank line before and after a paragraph.
________________________________________
Line Breaks
The <br> tag is used when you want to end a line, but don't want to start a new paragraph. The <br> tag forces a line break wherever you place it.
<p>This <br> is a para<br>graph with line breaks</p>
The <br> tag is an empty tag. It has no closing tag.
________________________________________
Comments in HTML
The comment tag is used to insert a comment in the HTML source code. A comment will be ignored by the browser. You can use comments to explain your code, which can help you when you edit the source code at a later date.
<!-- This is a comment -->
Note that you need an exclamation point after the opening bracket, but not before the closing bracket.
________________________________________
Basic Notes - Useful Tips
When you write HTML text, you can never be sure how the text is displayed in another browser. Some people have large computer displays, some have small. The text will be reformatted every time the user resizes his window. Never try to format the text in your editor by adding empty lines and spaces to the text.
HTML will truncate the spaces in your text. Any number of spaces count as one. Some extra information: In HTML a new line counts as one space.
Using empty paragraphs <p> to insert blank lines is a bad habit. Use the <br> tag instead. (But don't use the <br> tag to create lists. Wait until you have learned about HTML lists.)
You might have noticed that paragraphs can be written without the closing tag </p>. Don't rely on it. The next version of HTML will not allow you to skip ANY closing tags.
HTML automatically adds an extra blank line before and after some elements, like before and after a paragraph, and before and after a heading.
We use a horizontal rule (the <hr> tag), to separate the sections in our tutorials.
________________________________________
More Examples
More paragraphs
This example demonstrates some of the default behaviors of paragraph elements.
Line breaks
This example demonstrates the use of line breaks in an HTML document.
Poem problems
This example demonstrates some problems with HTML formatting.
Headings
This example demonstrates the tags that display headings in an HTML document.
Center aligned heading
This example demonstrates a center aligned heading.
Horizontal rule
This example demonstrates how to insert a horizontal rule.
Hidden comments
This example demonstrates how to insert a hidden comment in the HTML source code.
Background color
This example demonstrates adding a background-color to an HTML page.
Basic HTML Tags:
Tag Description
<html> Defines an HTML document
<body> Defines the document's body
<h1> to <h6> Defines header 1 to header 6
<p> Defines a paragraph
<br> Inserts a single line break
<hr> Defines a horizontal rule
<!--> Defines a comment
jam
2:06 AM
Diposting oleh
prazapreza2
0
komentar
HTML Elements
HTML Tags
• HTML tags are used to mark-up HTML elements
• HTML tags are surrounded by the two characters < and >
• The surrounding characters are called angle brackets
• HTML tags normally come in pairs like <b> and </b>
• The first tag in a pair is the start tag, the second tag is the end tag
• The text between the start and end tags is the element content
• HTML tags are not case sensitive, <b> means the same as <B>
________________________________________
HTML Elements
Remember the HTML example from the previous page:
<html>
<head>
<title>Title of page</title>
</head>
<body>
This is my first homepage. <b>This text is bold</b>
</body>
</html>
This is an HTML element:
<b>This text is bold</b>
The HTML element starts with a start tag: <b>
The content of the HTML element is: This text is bold
The HTML element ends with an end tag: </b>
The purpose of the <b> tag is to define an HTML element that should be displayed as bold.
This is also an HTML element:
<body>
This is my first homepage. <b>This text is bold</b>
</body>
This HTML element starts with the start tag <body>, and ends with the end tag </body>.
The purpose of the <body> tag is to define the HTML element that contains the body of the HTML document.
________________________________________
Why do We Use Lowercase Tags?
We have just said that HTML tags are not case sensitive: <B> means the same as <b>. If you surf the Web, you will notice that plenty of web sites use uppercase HTML tags in their source code. We always use lowercase tags. Why?
If you want to follow the latest web standards, you should always use lowercase tags. The World Wide Web Consortium (W3C) recommends lowercase tags in their HTML 4 recommendation, and XHTML (the next generation HTML) demands lowercase tags.
________________________________________
Tag Attributes
Tags can have attributes. Attributes provide additional information to an HTML element.
The following tag defines an HTML table: <table>. With an added border attribute, you can tell the browser that the table should have no borders: <table border="0">
Attributes always come in name/value pairs like this: name="value".
Attributes are always specified in the start tag of an HTML element.
jam
2:00 AM
Diposting oleh
prazapreza2
0
komentar
HTML intoduction
Do You Want to Try It?
If you are running Windows, start Notepad.
If you are on a Mac, start SimpleText.
In OSX start TextEdit 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!
Type in the following text:
<html>
<head>
<title>Title of page</title>
</head>
<body>
This is my first homepage. <b>This text is bold</b>
</body>
</html>
Save the file as "mypage.htm".
Start your Internet browser. Select "Open" (or "Open Page") in the File menu of your browser. A dialog box will appear. Select "Browse" (or "Choose File") and locate the HTML file you just created - "mypage.htm" - select it and click "Open". Now you should see an address in the dialog box, for example "C:\MyDocuments\mypage.htm". Click OK, and the browser will display the page.
Example Explained
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 <b> and </b> tags will be displayed in a bold font.
jam
1:33 AM
Diposting oleh
prazapreza2
0
komentar
Cinta Nol Perak(Awal Pertemuan)
"Oia, ini no baru aku, catet ya! 08569453xxxx,ini provider ok lho!!hehe",tanggap fitra.Dengan serius dengan hp barunya, Karen pun mencatat no tersebut ke dalam phonebook handphonenya itu. Saat itu tanpa sadar fitra memperhatikan sosok wanita yang sudah cukup familiar dengan dia, dia baru sadar bahwa wanita yang dihadapinya sekarang adalah bukan wanita biasa, penampilannya sangat menarik hatinya."Kak?kok bengong?",tanya karen yang membuat fitra tersentak kaget."Wah, sori-sori, gw lagi mkirin ujian spmb nanti nih,gw takut gak lulus",jawab fitra asal.
"Hoo,tenang aja kali kak,aku tau kok kakak pintar, pasti dapet universitas yang dipengenin deh!!hehe, aku doain!",hibur kareen. Tanpa disadari fitra tersenyum kepada Kareen, dia merasa senang, tentu saja berkat do'a itu, memang Fitra sangat was-was terhadap ujian yang melibatkan banyak peserta untuk memperebutkan kursi di Universitas Negeri di Indonesia itu.Telah lama Fitra menyiapkan dirinya untuk dapat masuk ke Jurusan favoritnya "Teknik Informatika",dia terus berusaha keras mengejar keteringgalan ilmunya di kelas dua SMA yang dikarenakan kesibukannya di berbagai organisasi.
"Kak, aku mau pergi dulu ya,ditungguin temen nih!!",Pamit Karen. Fitra hanya menganggukan kepalanya menandakan setuju.Karen pun pergi meninggalkan Fitra.
jam
12:54 AM
Diposting oleh
prazapreza2
0
komentar