Monday, May 5, 2008

Portali

laptop

Motion Computing F5 Tablet


[ubuntu] Ubuntu 8.04 Installer hangs - Please Help


Laptop Status



Combined physical and genetic map finds cancer’s ignition key


Saturday, March 22, 2008

#2

Sunday, March 2, 2008

vest

Blic: Plate dostigle nivo iz SFRJ

Press: Uz planinu bez ruku!

Dobrovoljno penziono uplaćuje 200.000 građana

Politika: Trećina mladih ne osuđuje nasilje

Abas suspendovao sve kontakte s Izraelom

Fejt: Za sever Kosova ni kanton ni autonomija

Irak i Iran od neprijatelja do braće

Češki premijer uslovaljava priznanje Kosova

Fudbalski navijači u pohodu na Vukovar

Tužilac Lazić pritvoren zbog primanja mita

Tanjug: Pop kultura na aukciji

Umesto srpskih, u KPS-u međunarodni policajci

Tadić: Ne odustajem ni od Kosova, ni od EU

G17 Plus: Zategnuti odnosi partnera u Vladi

Desetine mrtvih u sukobima u Sudanu

Najmanje 30 mrtvih u napadu bombaša samoubice

Čaves šalje tenkove na granicu s Kolumbijom

Rezervisti u Žitorađi: Nestalo 430.000 dinara

Proteset Srba u Ljubljani zbog Kosova

NATO uplovio u albanske vode


ODBOJKA: Radnički i Ribnica u finalu Kupa

PRIMERA: Magija Ronaldinja, katastrofa Barse

NBA: Četvrti poraz od kada je stigao Šek

Kastiljo za MONDO: Hteo sam da odem, ali…

WTA MEMFIS: Mama Lindzi opet pobedjuje

Njukasl “sto odsto” uz Kevina Kigena

ATP: Almagro najbolji na plažama Akapulka

Neopoziva ostavka Olivera Popovića

NBA: Jao Ming u ponedeljak na operaciji

Uhapšeni navijači zbog vredjanja Eduarda

SKIJANJE: Miler sve bliži Kristalnom globusu

NLB: FMP pobedio i stigao Zvezdu!

SERIJA A: Viola posle 20 godina pobedila Juve

MSL: Bežanija bolja od Čuke i Nađa

U ponedeljak smena Stevana Dike Stojakovića

Jokanović: Nisam baš najbolje spavao

F1: Denis napušta kormilo Meklarena?

BUNDES: Bohum iznenadio Bajer

PREMIJER: Dve “trojke” liverpulskih klubova

Nov život Beogradskog hipodroma


Ukrali 100 tona čokoladnog krema

Izbačen iz obdaništa zbog čiroki frizure

Sony Ericsson: Vizija uspeha

Na VMA bez skalpela do nove aorte

Marihuana povećava rizik od raka pluća

Facebook redizajnira profile

Od ponedeljka registracija .rs domena

Mazda ASV-4 za potpunu bezbednost

Spoj kamena, trave i vode u modernoj bašti

Akcionari kompanije Yahoo tuže upravu

Srbi retko idu kod zubara

Šest minuta sna dovoljno za bolje pamćenje

Ne kombinujte lekove protiv bolova

GM komunikator sa dve SIM kartice

Mačka glavu čuva

Acer predstavio male stone računare

Hit destinacije na Sajmu turizma

Japanski modeli dominiraju na listi najboljih

Mart - mesec borbe protiv raka u Srbiji

Glavobolje povezane sa stomačnim

Saturday, February 23, 2008

Slovenije

Umro Janez Drnovšek

Friday, February 22, 2008

Kosovo nezavisno

Kosovo za patike

Kosovo za patike, najpopularniji YouTube video

Saturday, February 2, 2008

Vesti dana, sport, showbiz


Desavanja

Sport

Magazin


Microsoft kupuje Yahoo


Tekstovi pesama









































Wednesday, September 12, 2007

HTML Beginner Tutorial - Tags, Attributes, and Elements

Although the basics of HTML are plain text, we need a bit more to make it a valid HTML document.

Tags

The basic structure of an HTML document includes tags, which surround content and apply meaning to it.

Change your document so that it looks like this:



<html>
<body>
This is my first web page
body>
html>


Now save the document again, go back to the web browser and select "refresh" (which will reload the page).

The appearance of the page will not have changed at all, but the purpose of HTML is to apply meaning, not presentation, and this example has now defined some fundamental elements of a web page.

The first line on the top that starts ... is to let the browser know that you know what the hell you're doing. You may think that you don't actually know what you're doing yet, but it's important to stick this in. If you don't, browsers will switch into "quirks mode" and act in a very peculiar way. Don't worry about this just yet, you can learn more about "document types" in the HTML Advanced Tutorial if you really want to. For the moment, just remember to shove this line at the top of your web pages and you're laughin'.

To get back to the point, is the opening tag that kicks things off and tells the browser that everything between that and the closing tag is an HTML document. The stuff between and is the main content of the document that will appear in the browser window.

Closing tags

The and close their respective tags. ALL HTML tags should be closed. Although older versions of HTML lazily allowed some tags not to be closed, latest standards require all tags to be closed. This is a good habit to get into anyway.

Not all tags have closing tags like this () some tags, which do not wrap around content will close themselves. The line-break tag for example, looks like this :
. We will come across these examples later. All you need to remember is that all tags must be closed and most (those with content between them) are in the format of opening tag → content → closing tag.

Attributes

Tags can also have attributes, which are extra bits of information. Attributes appear inside the opening tag and their value is always inside quotation marks. They look something like Margarine. We will come across tags with attributes later.

Elements

Tags tend not to do much more than mark the beginning and end of an element. Elements are the bits that make up web pages. You would say, for example, that everything that is in-between and includes the and tags is the body element. As another example, whereas '</code>' and '<code>' are tags, 'Rumple Stiltskin' is a title element.

Original source: HTML Dog