Jun 30, 2010

Google vs. Apple

In fact, Chrome vs. Safari.

It seems that Chrome is faster than Safari.

Details here:
http://www.pcmag.com/article2/0,2817,2365790,00.asp

Jun 29, 2010

HTML START...

Hi,

 

now we will start with a simple HTML page.

 

You need a editor to start editing first internet file. E.g. if you work in Windows you may use Notepad. Must create new file (from File->New File).

And after that you'll save this file with extension .htm or .html. For example, firstpage.html.

Now, you must know that one html page will contain some tags like <html>, <b>, <body>, <head>. Every opened tag will must be closed... i.e. every tag must have one end, like </html> or </body>


Now will see how is the structure of a html page.



<html>
<head>
<title>The title of my page</title>
</head>

<body>
<h1>My first HTML page</h1>
<h2>The second title of this page</h2>

Content of this page . . . . . .
bla bla bla


</body>
</html>


and the result is



My first HTML page

The second title of this page


Content of this page . . . . . .
bla bla bla





You can see any documentation here or here.

Good luck!