Sunteți pe pagina 1din 28

COLEGIUL TEHNIC ,,ANGHEL SALIGNY”

ROSIORII DE VEDE
TELEORMAN

PROIECT
ATESAT INFORMATICA

Profesor coordonator :
Stan Ilie

Candidat : Hlenschi Iulian Cristian


Clasa : a-XII-a A

-2018-
TEMA : SUEDIA

1
Cuprins

1. Istorie …………………………………………………….. pag.10


2. Geografie………………………………………………….. pag.14
3. Demografie………………………………………………... pag.17
4. Economie……………………………………………….…. pag.19
5. Cultură…………………………………………………….. pag.21
6. Sărbători naţionale…………………………………….…..pag.25
7. Sistem politic……………………………………………….pag.26

2
Introducere

Mi-am ales tema despre Suedia ,  din dorinţa de a mă perfecţiona într-un


domeniu care m-a captivat totdeauna – domeniul cunosterii si autocunoasterii,
imaginea de sine si stima de sine si inflenta ei asupra performantelor scolare-
tema care are o influenţă copleşitoare asupra educării sau mai bine spus asupra
dezvoltării armonioase a personalităţii . Tema proiectului meu este denumită
“SUEDIA” şi este rezultatul curiozităţii mele şi al unei provocări. Motivul
alegerii acestei teme derivă din dorinţa de documentare în legatură cu acest
subiect, deoarece este unul extrem de important, atât la nivelul Uniunii
Europene, al tuturor statelor membre, implicit şi al României, cât si la nivel
mondial , deoarece "politica concurenţială" este politica care tinde să garanteze
libertatea deplină a pieţei şi să prevină pericolul apariţiei monopolurilor,
oligopolurilor şi altor acorduri, capabile să dicteze preţuri şi condiţii comerciale
în defavoarea consumatorilor.

3
Informatii despre proiect

Proiectul a fost scris in Dreamweaver care este un generator HTML de tip


WYSIWYG (What You See Is Wat You Get). Permite utilizatorului sa vada
documentul asa cum va aparea in forma finala si sa editeze exact in acest mod
de vizualizare textul , grafica si alte elemente.
Astfel, daca efectuam o modificare pe ecran in interiorul programului,
rezultatele acestuia vor fi afisate instantaneu.Prin contrast, daca ar fi trebuit sa
scriem manual liniile de program HTML ,ar fi trebuit sa examinam programul
in interiorul unui browser Web pentru a vedea rezultatele.Raspunsul imediat al
unui mediu de proiectare mobil, precum Dreamweaver, mareste considerabil
fluxul activitatii ,deoarece putem vedea imediat, in timpul lucrului ,daca ne plac
sau nu rezultatele obtinute. Dreamweaver este primul editor HTML care a
castigat atat aprobarea programatorilor cat si pe cea a proiectantilor.
Programatorilor le place produsul deoarece nu ii obliga sa scrie linii de
program intr-o maniera rigida . Proiectantii agreeaza Dreamweaver deoarece
scrie linii de program “curate”,lipsit de o multime de etichete brevetate si care
se auto-deservesc, si le permite sa realizeze o machetare vizuala fara a intelege
macar o singura linie de program. Greu de crezut ca se poate inventa un
instrument care sa impace aceste grupuri divergente, dar instrumental respectiv
exista si se numeste Dreamweaver.

4
Capturi ecran

5
6
7
Listing (pentru paginile web)
Index

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"


"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->
<style type="text/css">
<!--
body {
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
background-color: #4E5869;
margin: 0;
padding: 0;
color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For
consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain.
Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
padding: 0;
margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
margin-top: 0; /* removing the top margin gets around an issue where margins can escape from
their containing div. The remaining bottom margin will hold it away from any elements that follow. */
padding-right: 15px;
padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the
divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate
method. */

8
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is
surrounded by a link */
border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the
hover effect. ~~ */
a:link {
color:#414958;
text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide
underlines for quick visual identification */
}
a:visited {
color: #4E5869;
text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience
as the person using a mouse. */
text-decoration: none;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
width: 80%;
max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a
large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This
keeps line length more readable in the side columns. IE6 does not respect this declaration. */
background-color: #FFF;
margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not
needed if you set the .container's width to 100%. */
}

/* ~~the header is not given a width. It will extend the full width of your layout. It contains an image
placeholder that should be replaced with your own linked logo~~ */
.header {
background-color: #6F7D94;
}

/* ~~ This is the layout information. ~~

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on
their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to
the div itself, it will be added to the width you define to create the *total* width. You may also choose to
remove the padding on the element in the div and place a second div within it with no width and the padding
necessary for your design.

*/
.content {
padding: 10px 0;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph
rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to
create the indention. These may be adjusted as you wish. */
}

9
/* ~~ The footer ~~ */
.footer {
padding: 10px 0;
background-color: #6F7D94;
}

/* ~~ miscellaneous float/clear classes ~~ */


.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the
element it should be next to on the page. */
float: right;
margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the
element it should be next to on the page. */
float: left;
margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated
div (within the #container) if the #footer is removed or taken out of the #container */
clear:both;
height:0;
font-size: 1px;
line-height: 0px;
}
-->
</style></head>

<body>
<!-- TemplateBeginEditable name="EditRegion3" -->
<div class="container">
<div class="header"><a href="#"><img src="" alt="Insert Logo Here" name="Insert_logo" width="20%"
height="90" id="Insert_logo" style="background-color: #8090AB; display:block;" /></a>
<!-- end .header -->
</div>
<div class="content">
<h1>Instructions</h1>
there.)</p>
<!-- end .content -->
</div>
<div class="footer">
<blockquote>
<p align="center">@Copyright Colegiul Tehnic ,,Anghel Saligny&quot;</p>
</blockquote>
<!-- end .footer -->
</div>
<!-- end .container -->
</div>
<!-- TemplateEndEditable -->
</body>
</html>

Istorie

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"


"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Untitled Document</title>

10
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->
<style type="text/css">
<!--
body {
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
background-color: #4E5869;
margin: 0;
padding: 0;
color: #000;
background-image: url(../background.jpg);
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For
consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain.
Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
padding: 0;
margin: 0;
}
a:visited {
color: #4E5869;
text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience
as the person using a mouse. */
text-decoration: none;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
width: 80%;
max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a
large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This
keeps line length more readable in the side columns. IE6 does not respect this declaration. */
background-color: #FFF;
margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not
needed if you set the .container's width to 100%. */
}

/* ~~the header is not given a width. It will extend the full width of your layout. It contains an image
placeholder that should be replaced with your own linked logo~~ */
.header {
background-color: #6F7D94;
}
*/
.content {
padding: 10px 0;
}

/* ~~ The footer ~~ */
.footer {
padding: 10px 0;
background-color: #6F7D94;
}

11
/* ~~ miscellaneous float/clear classes ~~ */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the
element it should be next to on the page. */
float: right;
margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the
element it should be next to on the page. */
float: left;
margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated
div (within the #container) if the #footer is removed or taken out of the #container */
clear:both;
height:0;
font-size: 1px;
line-height: 0px;
}
#apDiv1 {
position: absolute;
width: 591px;
height: 110px;
z-index: 1;
left: 401px;
top: 18px;
background-image: url(../logo2.fw.png);
}
#apDiv2 {
position: absolute;
width: 508px;
height: 99px;
z-index: 1;
left: 383px;
top: 196px;
}
<th width="66" scope="col"><a href="index.html">Acasa</a></th>
<th width="67" scope="col"><a href="istorie.html">Istorie</a></th>
<th width="99" scope="col"><a href="Geografie.html">Geografie</a></th>
<th width="114" scope="col"><a href="demografie.html">Demografie</a></th>
<th width="101" scope="col"><a href="economie.html">Economie</a></th>
<th width="86" scope="col"><a href="cultura.html">Cultura</a></th>
<th width="88" scope="col"><a href="sarbatori.html">Sarbatori</a></th>
<th width="123" scope="col"><a href="sistempolitic.html">Sistem politic</a></th>
</tr>
</table>
</form>
<h1>&nbsp;</h1>
<h1>Istorie </h1>
<div id="apDiv2"><img src="../logo2.fw.png" width="510" height="116" alt="A2" /></div>
<p>&nbsp;</p>
<h2>&nbsp;</h2>
<p align="center"><strong>Preistorie</strong><br />
<a href="https://ro.wikipedia.org/wiki/Preistorie" title="Preistorie">Preistoria</a>&nbsp;Suediei începe în
era caldă Allerød, cca 12.000 î.Hr., atunci când taberele unor vânători de reni, aparţinând culturii Bromme
din&nbsp;<a href="https://ro.wikipedia.org/wiki/Paleolitic" title="Paleolitic">Paleoliticul</a>&nbsp;Târziu,
au fost găsite la marginea gheţii în ceea ce este acum provincia cea mai sudică a ţării. Această perioadă a fost
caracterizată de mici grupuri de vânători-culegători-pescari, care foloseau tehnologia&nbsp;<a
href="https://ro.wikipedia.org/wiki/Cremene" title="Cremene">cremenii</a>.<br />
Agricultura şi creşterea animalelor, alături de ceremonii funerare, topoare lucrate de cremene şi ceramică
decorată, au ajuns în Suedia de astăzi de pe Continent, aduse de cultura&nbsp;Funnel-beaker&nbsp;din

12
cca.&nbsp;<a href="https://ro.wikipedia.org/w/index.php?title=4000_
%C3%AE.Hr&amp;action=edit&amp;redlink=1" title="4000 î.Hr — pagină inexistentă">4000 î.Hr</a>.
Treimea de sud a Suediei a fost inclusă în aria agrară şi de transhumanţă a culturii nordice din&nbsp;<a
href="https://ro.wikipedia.org/wiki/Epoca_Bronzului" title="Epoca Bronzului">Epoca Bronzului</a>, mare
parte din ea aflându-se la periferie faţă de centrul cultural&nbsp;<a
href="https://ro.wikipedia.org/wiki/Danemarca" title="Danemarca">danez</a>. Perioada a început în jurul
1.700 î.Hr., cu începerea importurilor de bronz din Europa. Minele de&nbsp;<a
href="https://ro.wikipedia.org/wiki/Cupru" title="Cupru">cupru</a>&nbsp;nu au fost folosite în această
perioadă, iar Scandinavia nu avea depozite de&nbsp;<a href="https://ro.wikipedia.org/wiki/Cositor"
title="Cositor">cositor</a>, astfel încât toate metalele trebuiau importate. Odată adus, metalul era prelucrat
conform tradiţiei locale.<br />
Epoca Bronzului din Nord a fost în întregime pre-urbană, oamenii locuind în cătune şi pe ferme cu nişte
case lungi de lemn, cu un singur etaj.<br />
Nefiind ocupată vreodată de&nbsp;<a href="https://ro.wikipedia.org/wiki/Imperiul_Roman" title="Imperiul
Roman">romani</a>, Epoca de Fier în Suedia a durat până în preajma anului&nbsp;<a
href="https://ro.wikipedia.org/wiki/1100" title="1100">1100</a>, când au fost introduse clădiri de piatră şi
ordine monahale. Majoritatea surselor scrise din această perioadă au o credibilitate scăzută. Asta e deoarece
fragmentele scrise datează dintr-o perioadă mult mai târzie decât perioada pe care o descriu, sau au fost scrise
în cu totul altă regiune, sau sunt mult prea scurte.<br />
Situaţia climaterică s-a înrăutăţit, obligându-i pe fermieri să îşi ţină&nbsp;<a
Roman">romanilor</a>&nbsp;a avut loc prima expansiune masivă a activităţii agrare până pe coasta&nbsp;<a
href="https://ro.wikipedia.org/wiki/Marea_Baltic%C4%83" title="Marea Baltică">baltică</a>, aparţinând celor
două treimi nordice ale ţării.<br />
Suedia intră în proto-istorie odată cu opera lui&nbsp;<a href="https://ro.wikipedia.org/wiki/Tacit"
title="Tacit">Tacit</a>&nbsp;Germania, din 98 d.Hr. În&nbsp;Germania 44, 45, el îi menţionează pe suedezi
(suiones), ca fiind un trib puternic (recunoscut nu doar pentru luptătorii şi armele sale, dar şi pentru navele
puternice), care dispunea de corăbii care aveau o proră la ambele capete. Nu se cunosc regii (kuningaz) care i-
au condus pe suiones, dar în mitologia nordică se regăseşte o dinastie lungă de regi legendari şi semi-legendari,
mergând până la ultimele secole de dinaintea erei noastre. Cât despre sistemul lor de scriere, alfabetul&nbsp;<a
href="https://ro.wikipedia.org/wiki/Rune" title="Rune">runelor</a>&nbsp;a fost inventat de elitele din sudul
Scandinaviei în secolul II. Cu toate acestea, tot ce a supravieţuit de pe vremea romanilor sunt inscripţii pe
artefacte, în special de nume bărbăteşti, care demonstrează că oamenii din sudul Scandinaviei vorbeau atunci o
limbă proto-nordică, o precursoare a suedezei şi a altor limbi nord-germanice.<br />
În&nbsp;<a href="https://ro.wikipedia.org/wiki/Secolul_VI" title="Secolul VI">secolul
VI</a>&nbsp;Jordanes a făcut referire la două triburi, pe care le-a
numit&nbsp;suehans&nbsp;şi&nbsp;suetidi, care conform lui, locuiau în Scandza. Se consideră că sunt de fapt
două nume pentru acelaşi trib. Suehanii, afirmă el, aveau căi foarte buni, la fel ca tribul&nbsp;Thyringi. Snorri
Sturluson a scris că regele Adils (Eadgils) din timpul său, avea cei mai buni cai pe care îi cunoscuse el.
Suehanii erau cei care aprovizionau piaţa romană cu piele de vulpe neagră. Se consideră că suetidi este forma
latină a lui&nbsp;svitjod. Scrie că suetidi sunt cei mai înalţi dintre oameni, alături de&nbsp;dani, cu care erau
înrudiţi. Mai târziu menţionează că şi alte triburi scandinave aveau aceeaşi înălţime.<br />
<img border="0" width="345" height="282" src="istorie_clip_image001.jpg"
alt="https://upload.wikimedia.org/wikipedia/commons/0/0c/TANUM2.JPG" /><br />
Gravuri în piatră din&nbsp;<a href="https://ro.wikipedia.org/w/index.php?
title=Tanum&amp;action=edit&amp;redlink=1" title="Tanum — pagină inexistentă">Tanum</a>,&nbsp;<a
href="https://ro.wikipedia.org/wiki/Bohusl%C3%A4n" title="Bohuslän">Bohuslän</a>. Aceste petroglife sunt
răspândite în toată Scandinavia, numai în Suedia găsindu-se mai multe mii.</p>
<p><strong>Epoca vikingă şi Evul Mediu</strong></p>
<p>Epoca vikingă a Suediei a durat aproximativ între secolele&nbsp;<a
href="https://ro.wikipedia.org/wiki/Secolul_VIII" title="Secolul VIII">VIII</a>&nbsp;şi&nbsp;<a
href="https://ro.wikipedia.org/wiki/Secolul_XI" title="Secolul XI">XI</a>. Se consideră că în această perioadă
suedezii s-au răspândit pornind din estul Suediei, încorporându-i pe&nbsp;geatas&nbsp;(a nu se confunda cu
geţii), care locuiau mai la sud<a href="https://ro.wikipedia.org/wiki/Suedia#cite_note-20">[20]</a>. Este
probabil ca vikingii suedezi şi gotlandezii să fi&nbsp;călătorit în special spre est şi sud, ajungând în&nbsp;<a
href="https://ro.wikipedia.org/wiki/Finlanda" title="Finlanda">Finlanda</a>, ţările baltice,&nbsp;<a
href="https://ro.wikipedia.org/wiki/Rusia" title="Rusia">Rusia</a>,&nbsp;<a
href="https://ro.wikipedia.org/wiki/Belarus" title="Belarus">Belarus</a>,&nbsp;<a
href="https://ro.wikipedia.org/wiki/Ucraina" title="Ucraina">Ucraina</a>,&nbsp;<a
href="https://ro.wikipedia.org/wiki/Marea_Neagr%C4%83" title="Marea Neagră">Marea Neagră</a>&nbsp;şi
chiar&nbsp;<a href="https://ro.wikipedia.org/wiki/Baghdad" title="Baghdad">Baghdad</a>. Rutele lor treceau

13
pe la râul&nbsp;<a href="https://ro.wikipedia.org/wiki/Nipru" title="Nipru">Nipru</a>, coborând
spre&nbsp;<a href="https://ro.wikipedia.org/wiki/Constantinopol"
title="Constantinopol">Constantinopol</a>&nbsp;(Imperiul Bizantin), care a fost supus de multe ori raidurilor
acestora. Împăratul bizantin&nbsp;<a href="https://ro.wikipedia.org/w/index.php?
title=Theophilos&amp;action=edit&amp;redlink=1" title="Theophilos — pagină
inexistentă">Theophilos</a>&nbsp;le-a consemnat abilităţile războinice, şi i-a invitat să facă parte din garda
lui personală, cunoscută ca garda varegă. Vikingii suedezi, denumiţi&nbsp;rusii&nbsp;(sau&nbsp;varegii rus),
sunt consideraţi şi fondatorii Rusiei kievene.
</p>
<p><strong>Istoria recentă</strong><br />
Suedia a rămas o&nbsp;<a href="https://ro.wikipedia.org/wiki/%C8%9Aar%C4%83_neutr%C4%83"
title="Țară neutră">ţară neutră</a>&nbsp;în timpul celor două războaie mondiale. A continuat să stea
nealiniată în timpul Războiului Rece şi nu este astăzi membră a nici unei alianţe militare (deşi a participat la
antrenamentele&nbsp;<a href="https://ro.wikipedia.org/wiki/NATO" title="NATO">NATO</a>). Aderarea
la&nbsp;<a href="https://ro.wikipedia.org/wiki/Uniunea_European%C4%83" title="Uniunea
Europeană">Uniunea Europeană</a>&nbsp;a fost susţinută de partidele politice, şi&nbsp;<a
href="https://ro.wikipedia.org/wiki/Referendum" title="Referendum">referendumul</a>&nbsp;privind
aderarea a avut succes, trecând cu o majoritate de 52%, pe&nbsp;<a
href="https://ro.wikipedia.org/wiki/13_noiembrie" title="13 noiembrie">13 noiembrie</a>&nbsp;<a
href="https://ro.wikipedia.org/wiki/1994" title="1994">1994</a>. Suedia a aderat la 1 ianuarie&nbsp;<a
href="https://ro.wikipedia.org/wiki/1995" title="1995">1995</a>.<br />
Pe durata Războiului Rece, ţările nealiniate, cu excepţia Irlandei, au considerat că nu e înţelept să adere la
Uniunea Europeană, deoarece predecesorul Uniunii, Comunitatea Europeană, fusese asociată cu ţările
membre&nbsp;<a href="https://ro.wikipedia.org/wiki/NATO" title="NATO">NATO</a>. După sfârşitul
Războiului Rece, Suedia,&nbsp;<a href="https://ro.wikipedia.org/wiki/Austria"
title="Austria">Austria</a>&nbsp;şi&nbsp;<a href="https://ro.wikipedia.org/wiki/Finlanda"
title="Finlanda">Finlanda</a>&nbsp;au intrat în UE, dar Suedia fără să adopte şi moneda unică europeană.
<!-- end .footer -->
</div>
<!-- end .container -->
</div>
<!-- TemplateEndEditable -->
</body>
</html>

Geografie

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"


"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- TemplateEndEditable -->
<!--
body {
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
background-color: #4E5869;
margin: 0;
padding: 0;
color: #000;
background-image: url(../background.jpg);
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For
consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain.
Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
padding: 0;

14
margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
margin-top: 0; /* removing the top margin gets around an issue where margins can escape from
their containing div. The remaining bottom margin will hold it away from any elements that follow. */
padding-right: 15px;
padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the
divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate
method. */
text-align: justify;
}

*/
.content {
padding: 10px 0;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph
rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to
create the indention. These may be adjusted as you wish. */
}

/* ~~ The footer ~~ */
.footer {
padding: 10px 0;
background-color: #6F7D94;
}

/* ~~ miscellaneous float/clear classes ~~ */


.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the
element it should be next to on the page. */
float: right;
margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the
element it should be next to on the page. */
float: left;
margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated
div (within the #container) if the #footer is removed or taken out of the #container */
clear:both;
height:0;
font-size: 1px;
line-height: 0px;
}
#apDiv1 {
position: absolute;
width: 591px;
height: 110px;
z-index: 1;
left: 401px;
top: 18px;
background-image: url(../logo2.fw.png);
}
#apDiv2 {
position: absolute;
width: 508px;

15
height: 99px;
z-index: 1;
left: 383px;
top: 196px;
}
.container .content h2 {
text-align: left;
}
-->
</style></head>

<body>
<!-- TemplateBeginEditable name="EditRegion3" -->
<div class="container">
<div class="header"><a href="#"><img src="../logo.fw.png" alt="Insert Logo Here" name="Insert_logo"
width="276" height="118" id="Insert_logo" style="background-color: #8090AB; display:block;" /></a><!--
end .header -->
</div>
<div class="content">
<form id="form2" name="form2" method="post" action="">
<table width="796" border="1">
<tr>
<th width="66" scope="col"><a href="index.html">Acasa</a></th>
<th width="67" scope="col"><a href="istorie.html">Istorie</a></th>
<th width="99" scope="col"><a href="Geografie.html">Geografie</a></th>
<th width="114" scope="col"><a href="demografie.html">Demografie</a></th>
<th width="101" scope="col"><a href="economie.html">Economie</a></th>
<th width="86" scope="col"><a href="cultura.html">Cultura</a></th>
<th width="88" scope="col"><a href="sarbatori.html">Sarbatori</a></th>
<th width="123" scope="col"><a href="sistempolitic.html">Sistem politic</a></th>
</tr>
</table>
</form>
<h1>&nbsp;</h1>
<h1>Geografie </h1>
<div id="apDiv2"><img src="../logo2.fw.png" width="510" height="116" alt="A2" /></div>
<p>&nbsp;</p>
<h2>&nbsp;</h2>
<p><strong>Relief </strong><br />
Relief predominant de platou şi de câmpie, cu următoarele particularităţi:<br />
În vestul şi nord-vestul ţării se întind&nbsp;<a href="https://ro.wikipedia.org/wiki/Mun
%C8%9Bii_Scandinaviei" title="Munții Scandinaviei">Alpii Scandinavi</a>&nbsp;care ating altitudinea
maxima prin vf.&nbsp;<a href="https://ro.wikipedia.org/wiki/Kebnekaise"
title="Kebnekaise">Kebnekajse</a>: (alt. 2111 m).<br />
Alte vârfuri:&nbsp;<a href="https://ro.wikipedia.org/w/index.php?
title=Sarek&amp;action=edit&amp;redlink=1" title="Sarek — pagină inexistentă">Sarek</a>&nbsp;(alt. 2090
m),&nbsp;<a href="https://ro.wikipedia.org/wiki/Sulitjelma" title="Sulitjelma">Sulitjelma</a>&nbsp;(alt. 1914
m).<br />
Spre est munţii sunt mărginiţi de un podiş, care coboară în trepte spre litoralul cu fiorduri al Mării Baltice,
unde se află Golful Botnic. În partea sudică a ţării se întind câmpii care înconjoară o mică regiune deluroasă,
podişul Smaland (alt. 377 m) şi câmpia vălurită Skania, cu soluri fertile şi peisaje asemanatoare Danemarcei
învencinate. Există foarte multe lacuri de origine tectono-glaciară, mai ales in câmpia central-sudică a ţării. Din
cele circa 96.000 de lacuri, mai mari sunt&nbsp;<a href="https://ro.wikipedia.org/wiki/Lacul_V%C3%A4nern"
title="Lacul Vänern">Vänern</a>&nbsp;(5585&nbsp;km²),&nbsp;<a
href="https://ro.wikipedia.org/w/index.php?title=V%C3%A4ttern&amp;action=edit&amp;redlink=1"
title="Vättern — pagină inexistentă">Vättern</a>&nbsp;(1899&nbsp;km²) şi&nbsp;<a
href="https://ro.wikipedia.org/w/index.php?title=M%C3%A4laren&amp;action=edit&amp;redlink=1"
title="Mälaren — pagină inexistentă">Mälaren</a>(1140&nbsp;km²). Zonele mlăştinoase acoperă peste 10%
din suprafaţa ţării.<br />

16
&amp;redlink=1" title="Indalsälven — pagină inexistentă">Indalsälven</a>,&nbsp;<a
href="https://ro.wikipedia.org/w/index.php?title=R%C3%A2ul_
%C3%85ngerman&amp;action=edit&amp;redlink=1" title="Râul Ångerman — pagină
inexistentă">Ångerman</a>,&nbsp;<a href="https://ro.wikipedia.org/w/index.php?title=R
%C3%A2ul_Ume&amp;action=edit&amp;redlink=1" title="Râul Ume — pagină
inexistentă">Ume</a>,&nbsp;<a href="https://ro.wikipedia.org/w/index.php?title=R
%C3%A2ul_Pite&amp;action=edit&amp;redlink=1" title="Râul Pite — pagină inexistentă">Pite</a>,&nbsp;<a
href="https://ro.wikipedia.org/w/index.php?title=R%C3%A2ul_Lule&amp;action=edit&amp;redlink=1"
title="Râul Lule — pagină inexistentă">Lule</a>,&nbsp;<a href="https://ro.wikipedia.org/w/index.php?title=R
%C3%A2ul_Torne&amp;action=edit&amp;redlink=1"
până la 10 luni pe an, la înălţimi de peste 500 m netopindu-se niciodată.<br />
La nord de cercul polar (în län-ul Norrbotten şi în nordul län-ului Västerbotten), soarele nu apune în lunile
iunie şi iulie. Mai la sud, în aceleaşi luni, deşi soarele se situează pentru câteva zeci de minute sub linia
orizontului, este suficientă lumină la orice oră pentru a depune activităţi diurne fără iluminat adiţional (aşa-
numitele nopţi albe). În Stockholm, în luna iunie, noaptea durează câteva ore.<br />
</p>
<blockquote>
<p align="center">@Copyright Colegiul Tehnic ,,Anghel Saligny&quot;</p>
</blockquote>
<!-- end .footer -->
</div>
<!-- end .container -->
</div>
<!-- TemplateEndEditable -->
</body>
</html>

Demografie

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"


"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->
<style type="text/css">
<!--
body {
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
background-color: #4E5869;
margin: 0;
padding: 0;
color: #000;
background-image: url(../background.jpg);
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For
consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain.
Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
padding: 0;
margin: 0;
}
*/
.content {
padding: 10px 0;

17
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph
rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to
create the indention. These may be adjusted as you wish. */
}

/* ~~ The footer ~~ */
.footer {
padding: 10px 0;
background-color: #6F7D94;
}

/* ~~ miscellaneous float/clear classes ~~ */


.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the
element it should be next to on the page. */
float: right;
margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the
element it should be next to on the page. */
float: left;
margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated
div (within the #container) if the #footer is removed or taken out of the #container */
clear:both;
height:0;
font-size: 1px;
line-height: 0px;
}
-->
</style></head>

<body>
<!-- TemplateBeginEditable name="EditRegion3" -->
<div class="container">
</tr>
</table>
</form>
<h1>&nbsp;</h1>
<h1>Demografie </h1>
<div id="apDiv2"><img src="../logo2.fw.png" width="510" height="116" alt="A2" /></div>
<p>&nbsp;</p>
<h2>&nbsp;</h2>
<p>Conform unui recensământ din&nbsp;<a href="https://ro.wikipedia.org/wiki/2010"
title="2010">2010</a>, populaţia totală a Suediei a fost estimată la 9.347.899 de locuitori. Conform unor
statistici publicate de către agenţia guvernamentală&nbsp;<a href="https://ro.wikipedia.org/w/index.php?
title=Statistiska_centralbyr%C3%A5n&amp;action=edit&amp;redlink=1" title="Statistiska centralbyrån —
pagină inexistentă">Statistiska centralbyrån</a>, pragul de nouă milioane a fost atins pentru prima dată în
istoria ţării în august&nbsp;<a href="https://ro.wikipedia.org/wiki/2004" title="2004">2004</a>. Densitatea
populaţiei este de doar 20,6/km², şi există o diferenţă clară în favoarea sudului ţării. Aproximativ 85% din
populaţie locuieşte în zone urbane. Capitala,&nbsp;<a href="https://ro.wikipedia.org/wiki/Stockholm"
title="Stockholm">Stockholm</a>, are aproximativ 800.000 de locuitori (1,3 milioane cu tot cu aria urbană, 2
milioane cu aria metropolitană). Al doilea şi al treilea oraş ca mărime sunt Gothenburg şi Malmö,
respectiv.<br />
Un recensământ din&nbsp;<a href="https://ro.wikipedia.org/wiki/2007" title="2007">2007</a>&nbsp;a
arătat că 13,4% (1,23 milioane) din cetăţenii suedezi s-au născut în altă ţară. Acest fapt reflectă migraţiile între

18
ţările nordice, precum şi perioade de imigraţie pentru căutarea unui loc de muncă, iar, în ultimele decenii,
imigraţia refugiaţilor şi a unor membri a familiilor deja stabilite în Suedia. Astfel, Suedia s-a transformat dintr-o
ţară de emigranţi (până la&nbsp;<a href="https://ro.wikipedia.org/wiki/Primul_r%C4%83zboi_mondial"
title="Primul război mondial">primul război mondial</a>), într-o ţară care primeşte imigranţi (începând
cu&nbsp;<a href="https://ro.wikipedia.org/wiki/Al_doilea_r%C4%83zboi_mondial" title="Al doilea război
mondial">al doilea război mondial</a>). În 2007, imigraţia a atins cota maximă, 99.485 de persoane stabilindu-
se în Suedia&nbsp;.<br />
Dintre imigranţi, cel mai mare grup etnic din 2007 l-au reprezentat&nbsp;<a
href="https://ro.wikipedia.org/wiki/Finlanda" title="Finlanda">finlandezii</a>, urmaţi de persoane născute în
fosta&nbsp;<a href="https://ro.wikipedia.org/wiki/Iugoslavia" title="Iugoslavia">Iugoslavie</a>, în Irak,
Polonia, Iran, Danemarca, Germania, Norvegia, Turcia, Chile, Liban, Tailanda, Somalia, Regatul Unit, Siria,
China şi Statele Unite. În ultimul deceniu, cei mai mulţi imigranţi au provenit din&nbsp;<a
href="https://ro.wikipedia.org/wiki/Irak" title="Irak">Irak</a>,&nbsp;<a
href="https://ro.wikipedia.org/wiki/Polonia" title="Polonia">Polonia</a>,&nbsp;<a
href="https://ro.wikipedia.org/wiki/Tailanda" title="Tailanda">Tailanda</a>,&nbsp;<a
href="https://ro.wikipedia.org/wiki/Somalia" title="Somalia">Somalia</a>&nbsp;şi&nbsp;<a
href="https://ro.wikipedia.org/wiki/China" title="China">China</a>.<br />
<p><strong>Populaţie istorică</strong></p>
<p><img border="0" width="602" height="268" src="demografie_clip_image002.jpg"
alt="https://upload.wikimedia.org/wikipedia/ro/timeline/a73d864e5cdb3e6d9c8f55a8c49c3722.png" /> <br />
<strong>Limba vorbită</strong><br />
Limba oficială a Suediei este&nbsp;<a href="https://ro.wikipedia.org/wiki/Limba_suedez%C4%83"
title="Limba suedeză">suedeza</a>, o limbă ce aparţine ramurei&nbsp;<a
href="https://ro.wikipedia.org/wiki/Limbi_germanice_de_nord" title="Limbi germanice de nord">limbilor
germanice de nord</a>, fiind foarte asemănătoare cu&nbsp;<a
href="https://ro.wikipedia.org/wiki/Limba_danez%C4%83" title="Limba daneză">daneza</a>şi&nbsp;<a
href="https://ro.wikipedia.org/wiki/Limba_norvegian%C4%83" title="Limba norvegiană">norvegiana</a>, dar
diferă din punct de vedere al pronunţiei şi al ortografiei. Norvegienii înţeleg suedeza cu un pic de dificultate, iar
danezii un pic mai greu decât norvegienii. În împrejurimile oraşului&nbsp;<a
href="https://ro.wikipedia.org/wiki/Malm%C3%B6" title="Malmö">Malmö</a>&nbsp;(care este foarte
apropiat de&nbsp;<a href="https://ro.wikipedia.org/wiki/Copenhaga" title="Copenhaga">Copenhaga</a>,
capitala Danemarcei) este înregistrată zona cu cea mai mare&nbsp;<a
href="https://ro.wikipedia.org/wiki/Inteligibilitate_mutual%C4%83" title="Inteligibilitate
mutuală">inteligibilitate mutuală</a>, loc în care populaţia înţelege ambele limbi cu uşurinţă fără a avea
<!-- end .content -->
</div>
<div class="footer">
<blockquote>
<p align="center">@Copyright Colegiul Tehnic ,,Anghel Saligny&quot;</p>
</blockquote>
<!-- end .footer -->
</div>
<!-- end .container -->
</div>
<!-- TemplateEndEditable -->
</body>
</html>

Economie

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"


"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->

19
<style type="text/css">
<!--
body {
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
background-color: #4E5869;
margin: 0;
padding: 0;
color: #000;
background-image: url(../background.jpg);
}

/* ~~ Element/tag selectors ~~ */
.container {
width: 80%;
max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a
large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This
keeps line length more readable in the side columns. IE6 does not respect this declaration. */
background-color: #FFF;
margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not
needed if you set the .container's width to 100%. */
}

/* ~~the header is not given a width. It will extend the full width of your layout. It contains an image
placeholder that should be replaced with your own linked logo~~ */
.header {
background-color: #6F7D94;
}

*/
.content {
padding: 10px 0;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph
rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to
create the indention. These may be adjusted as you wish. */
}

/* ~~ The footer ~~ */
.footer {
padding: 10px 0;
background-color: #6F7D94;
}

/* ~~ miscellaneous float/clear classes ~~ */


.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the
element it should be next to on the page. */
float: right;
margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the
element it should be next to on the page. */
float: left;
margin-right: 8px;
}

20
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated
div (within the #container) if the #footer is removed or taken out of the #container */
clear:both;
height:0;
font-size: 1px;
line-height: 0px;
}
height="116" alt="A2" /></div>
<p>&nbsp;</p>
<h2>&nbsp;</h2>
<p> Economie bazată pe industrie şi servicii.</p>
<ul>
<li><strong>PIB (1995):</strong>&nbsp;2% agricultură, 32% industrie, 66% servicii.</li>
<li>Dispune de însemnate&nbsp;<strong>zăcăminte</strong>&nbsp;de minereuri de fier, şisturi
bituminoase, cupru, zinc, wolfram, uraniu, aur, argint.</li>
<li><strong>Industrie avansată:</strong>&nbsp;extractivă, metalurgică (fontă, otel, aluminiu ş.a.),
constructoare de maşini (nave, avioane, automobile, material rulant ş.a.), energetică (peste 1000 de
hidrocentrale, centrale nucleare), forestieră, de celuloză şi hârtie, chimică şi petrochimică, textilă,
alimentară.</li>
<li><strong>Pescuit maritim</strong>.</li>
<li><strong>Flotă</strong>&nbsp;comercială maritimă.</li>
<li><strong>Căi navigabile interne</strong>.</li>
<li><strong>Căi ferate</strong>: 11.285&nbsp;km.</li>
<li><strong>Căi rutiere:</strong>&nbsp;135.859&nbsp;km.</li>
<li>La începutul secolului XX, Suedia era o ţară preponderent agrară si una dintre cele mai sărace naţiuni
europene.</li>
<li>Bogatele sale resurse interne (minereu de fier, material lemnos si putere hidraulică), au permis o
industrializare rapidă, care a transformat Suedia într-un modern stat al bunăstării.</li>
<li>Suedia este o ţară industrial-agrară dezvoltată, cu o puternică industrie extractivă, siderurgică, a
metalurgiei neferoase, iar construcţiile navale au o mare dezvoltare (la Malmo si Goteborg).</li>
<li>Cea mai importantă ramură industrială este construcţia de maşini (autovehicule, motoare diesel,
aeronave, ambarcaţiuni, echipamente electrice) cu centrele principale la: Stockholm, Goteborg, Vasteras).</li>
<li>Suedia ocupă locul 4 pe glob în industria mobilei, locul 5 in producţia de cherestea şi locul 7 la plăci
aglomerate şi fibrolemnoase.</li>
<li>Stockholmul reprezintă un important centru industrial şi comercial al Suediei (industrie constructoare
de maşini, electrotehnică, şantiere navale, industrie poligrafică, chimică, usoară, pielărie şi alimentară).</li>
<li>Una dintre cele mai favorabile dezvoltări au cunoscut sectoarele de înaltă tehnologie, precum
telecomunicaţiile şi industria farmaceutică, orientate către export.</li>
<li>Din 1995 Suedia este membră a Uniunii Europene.</li>
</ul>
<h2 align="left">&nbsp;</h2>
<!-- end .content -->
</div>
<div class="footer">
<blockquote>
<p align="center">@Copyright Colegiul Tehnic ,,Anghel Saligny&quot;</p>
</blockquote>
<!-- end .footer -->
</div>
<!-- end .container -->
</div>
<!-- TemplateEndEditable -->
</body>
</html>

Cultura

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"


"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

21
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->
<style type="text/css">
<!--
body {
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
background-color: #4E5869;
margin: 0;
padding: 0;
color: #000;
background-image: url(../background.jpg);
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For
consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain.
Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
padding: 0;
margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
margin-top: 0; /* removing the top margin gets around an issue where margins can escape from
their containing div. The remaining bottom margin will hold it away from any elements that follow. */
padding-right: 15px;
padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the
divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate
method. */
text-align: justify;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is
surrounded by a link */
border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the
hover effect. ~~ */
a:link {
color:#414958;
text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide
underlines for quick visual identification */
}
a:visited {
color: #4E5869;
text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience
as the person using a mouse. */
text-decoration: none;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
width: 80%;
max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a
large monitor. This keeps line length more readable. IE6 does not respect this declaration. */

22
min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This
keeps line length more readable in the side columns. IE6 does not respect this declaration. */
background-color: #FFF;
margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not
needed if you set the .container's width to 100%. */
}

/* ~~the header is not given a width. It will extend the full width of your layout. It contains an image
placeholder that should be replaced with your own linked logo~~ */
.header {
background-color: #6F7D94;
}

/* ~~ This is the layout information. ~~

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on
their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to
the div itself, it will be added to the width you define to create the *total* width. You may also choose to
remove the padding on the element in the div and place a second div within it with no width and the padding
necessary for your design.

*/
.content {
padding: 10px 0;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph
rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to
create the indention. These may be adjusted as you wish. */
}

/* ~~ The footer ~~ */
.footer {
padding: 10px 0;
background-color: #6F7D94;
}

/* ~~ miscellaneous float/clear classes ~~ */


.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the
element it should be next to on the page. */
float: right;
margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the
element it should be next to on the page. */
float: left;
margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated
div (within the #container) if the #footer is removed or taken out of the #container */
clear:both;
height:0;
font-size: 1px;
line-height: 0px;
}
#apDiv1 {
position: absolute;
width: 591px;

23
height: 110px;
z-index: 1;
left: 401px;
top: 18px;
background-image: url(../logo2.fw.png);
}
#apDiv2 {
position: absolute;
width: 508px;
height: 99px;
z-index: 1;
left: 383px;
top: 196px;
}
.container .content h2 {
text-align: left;
}
-->
</style></head>

<body>
<!-- TemplateBeginEditable name="EditRegion3" -->
<div class="container">
<div class="header"><a href="#"><img src="../logo.fw.png" alt="Insert Logo Here" name="Insert_logo"
width="276" height="118" id="Insert_logo" style="background-color: #8090AB; display:block;" /></a><!--
end .header -->
</div>
<div class="content">
<form id="form2" name="form2" method="post" action="">
<table width="796" border="1">
<tr>
href="https://ro.wikipedia.org/wiki/Scandinavia" title="Scandinavia">Scandinavia</a>.</p>
<p><strong>Muzica</strong><br />
In Suedia regasim cativa cantareti si compozitori de opera deosebit de talentati:&nbsp;<a
href="https://ro.wikipedia.org/wiki/Jacob_Niclas_Ahlstr%C3%B6m" title="Jacob Niclas Ahlström">Jacob
Niclas Ahlström</a>,&nbsp;<a href="https://ro.wikipedia.org/wiki/Olof_%C3%85hlstr%C3%B6m" title="Olof
Åhlström">Olof Åhlström</a>,&nbsp;<a href="https://ro.wikipedia.org/wiki/Franz_Berwald" title="Franz
Berwald">Franz Berwald</a>.<br />
Cea mai mare contributie suedeza in muzica a fost in sfera canto. Corurile vocale, cel mai adesea formate
din enoriasii bisericilor, raman o activitate sociala si culturala foarte populara in Suedia.<br />
Printre interpretii faimosi ai Suediei se numara: Jenny Lind, Christina Nillson, Brigit Nillson si Lenna
Willemark. Cantecele populare suedeze sunt in general&nbsp;balade,&nbsp;acompaniate de vioara, violoncel
sau viola, dar si de un instrument foarte folosit in Suedia&nbsp;mickelharpa&nbsp;si alte instrumente
traditionale.&nbsp; <br />
</p>
<p><strong>Religie</strong></p>
<p>Suedezii sunt printre cei mai puţin religioşi oameni, doar 2% din cetăţeni ducându-se în mod regulat sau
semi-regulat la un serviciu religios. Mai puţin de 24% din cetăţenii Suediei cred în existenţa unei divinităţi,
între 17 şi 83% fiind clasaţi ca atei. Majoritatea populaţiei religioase este&nbsp;<a
">Bosnia-Herţegovina</a>&nbsp;au dus la creşterea numărului de&nbsp;<a
href="https://ro.wikipedia.org/wiki/Musulman" title="Musulman">musulmani</a>&nbsp;(astăzi între 100,000-
150,000).<br />
<!-- end .content -->
</div>
<div class="footer">
<blockquote>
<p align="center">@Copyright Colegiul Tehnic ,,Anghel Saligny&quot;</p>
</blockquote>
<!-- end .footer -->
</div>

24
<!-- end .container -->
</div>
<!-- TemplateEndEditable -->
</body>
</html>

Sarbatori nationale

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"


"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->
<style type="text/css">
<!--
body {
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
background-color: #4E5869;
margin: 0;
padding: 0;
color: #000;
background-image: url(../background.jpg);
}

}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated
div (within the #container) if the #footer is removed or taken out of the #container */
clear:both;
height:0;
font-size: 1px;
line-height: 0px;
}
#apDiv1 {
position: absolute;
width: 591px;
height: 110px;
z-index: 1;
left: 401px;
top: 18px;
background-image: url(../logo2.fw.png);
}
#apDiv2 {
position: absolute;
width: 508px;
height: 99px;
z-index: 1;
left: 383px;
top: 196px;
}
.container .content h2 {
text-align: left;
}
-->
</style></head>

25
</div>
<!-- end .container -->
</div>
<!-- TemplateEndEditable -->
</body>
</html>

Sistem politic

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"


"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->
<style type="text/css">
<!--
body {
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
background-color: #4E5869;
margin: 0;
padding: 0;
color: #000;
background-image: url(../background.jpg);
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For
consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain.
Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
padding: 0;
margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
margin-top: 0; /* removing the top margin gets around an issue where margins can escape from
their containing div. The remaining bottom margin will hold it away from any elements that follow. */
padding-right: 15px;
padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the
divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate
method. */
text-align: justify;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is
surrounded by a link */
border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the
hover effect. ~~ */
a:link {
color:#414958;
text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide
underlines for quick visual identification */
}
a:visited {
color: #4E5869;

26
text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience
as the person using a mouse. */
text-decoration: none;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
width: 80%;
max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a
large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This
keeps line length more readable in the side columns. IE6 does not respect this declaration. */
background-color: #FFF;
margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not
needed if you set the .container's width to 100%. */
}

Sistemul politic este unul parlamentar, cu reprezentare proporţională pe liste de partid. Timp de peste 50 de
ani&nbsp;<a href="https://ro.wikipedia.org/w/index.php?
title=Partidul_Social_Democrat_Suedez&amp;action=edit&amp;redlink=1" title="Partidul Social Democrat
Suedez — pagină inexistentă">Partidul Social Democrat Suedez</a>&nbsp;(Sveriges socialdemokratiska
arbetareparti&nbsp;(Partidul Social Democrat al Lucrătorilor din Suedia), cunoscut popular
ca&nbsp;Socialdemokraterna&nbsp;sau&nbsp;SAP) au dominat sistemul politic, guvernând în total timp de 47
de ani, cu numai 3 întreruperi (1976-1982, 1991-1994 şi 2006-) din 1950 până astăzi.<br />
Partidele de dreapta, la guvernare din 2006, sunt grupate într-o alianţă (Allians för Sverige&nbsp;-
&quot;Alianţa pentru Suedia&quot;) şi sunt cunoscute popular ca &quot;Partide burgheze&quot; -
&nbsp;Borgerliga partier, acest termen neavând în niciun fel conotaţii negative. Acestea sunt &quot;Partidul
Moderat&quot; (Moderata samlingspartiet, pop.&nbsp;Moderaterna&nbsp;sau &quot;m&quot;), de orientare
liberal-conservatoare; &quot;Partidul Popular Liberal&quot; (Folkpartiet liberalerna,
pop.&nbsp;Folkpartiet&nbsp;sau&nbsp;fp), de orientare&nbsp;<a href="https://ro.wikipedia.org/wiki/Liberal"
title="Liberal">liberală</a>&nbsp;cu elemente social-liberale; Partidul de Centru (Centerpartiet, sau&nbsp;c)
de orientare centrist-agrară, cu elemente liberale şi &quot;Creştin-Democraţii&quot;
(Kristdemocraterna&nbsp;sau&nbsp;kd).<br />
Pe lângă SAP şi Alianţă, mai există două partide, Partidul Mediului - Verzii (Miljöpartiet de
gröna,&nbsp;mp), de orientare&nbsp;<a href="https://ro.wikipedia.org/wiki/Ecologist"
title="Ecologist">ecologistă</a>, respectiv Partidul de Stânga (Vänsterpartiet,&nbsp;v), fostul partid&nbsp;<a
href="https://ro.wikipedia.org/wiki/Comunist" title="Comunist">comunist</a>, actualment democrat-socialist.
Aceste două partide nu au fost niciodată în guvern, deşi au sprijinit SAP cât timp aceştia au fost la
guvernare.<br />
Alegerile sunt deosebit de importante pentru suedezi, participarea politică fiind considerată foarte importantă
(peste 30% sunt membri în diverse partide şi peste 80% sunt membri în diverse sindicate). La alegerile
legislative şi locale (organizate la fiecare 4 ani), peste 80% din alegători sunt prezenţi la vot, foarte mulţi
participând anterior în organizarea campaniei electorale şi în realizarea platformelor politice. Participarea la vot
şi dezbaterile civilizate sunt considerate de majoritatea cetăţenilor ca fiind esenţiale pentru&nbsp;<a. <!-- end
.content -->
</div>
<div class="footer">
<blockquote>
<p align="center">@Copyright Colegiul Tehnic ,,Anghel Saligny&quot;</p>
</blockquote>
<!-- end .footer -->
</div>
<!-- end .container -->
</div>
<!-- TemplateEndEditable -->
</body>
</html>

27

S-ar putea să vă placă și