commit 78013237e2ca29b87563676dc795c50430b026ce Author: Šimon Záriš Date: Thu Mar 21 10:25:45 2024 +0100 init diff --git a/FormulareOdUcitela.html b/FormulareOdUcitela.html new file mode 100644 index 0000000..2d4bcff --- /dev/null +++ b/FormulareOdUcitela.html @@ -0,0 +1,227 @@ + + + + +formularoducitela + + + + + +

Formular priklad

+ + +
+ +
+
+
+

+ +
+ +
+ +

input type="text"

+
+ +
+ + +
+
+ +

input type="password"

+
+
+
+
+ + +
+
+ +

input type="submit" a input type="reset"

+
+
+
+
+

+ + +
+
+ +

input type="radio"

+
+ +
+ +
+ + + +
+
+ +

input type="checkbox"

+
+ +
+ +
+ + + +
+
+ +

input type="color"

+
+ + + +
+
+ +

input type="date"

+
+ +

+ + +

+ + +
+
+ +

input type="email"

+
+ + + +
+
+ +

input type="file"

+
+ + + +
+
+ +

input type="number"

+
+ + +
+
+ +

atributy pre input (Input Restrictions)

+

+ checked - Specifies that an input field should be pre-selected when the page loads (for type="checkbox" or type="radio")
+ disabled - Specifies that an input field should be disabled
+ max - Specifies the maximum value for an input field
+ maxlength - Specifies the maximum number of character for an input field
+ min - Specifies the minimum value for an input field
+ pattern - Specifies a regular expression to check the input value against
+ readonly - Specifies that an input field is read only (cannot be changed)
+ required - Specifies that an input field is required (must be filled out)
+ size - Specifies the width (in characters) of an input field
+ step - Specifies the legal number intervals for an input field
+ value - Specifies the default value for an input field

+

+ +
+ + +
+
+ +

input type="range"

+
+ + +
+
+
+ 10 + + 100 + + + = + +

+ +
+
+ +

input type="tel" https://regexr.com/

+
+ + + +
+
+ +

input type="url"

+
+ + + +
+
+ +

Datalist

+
+ + + + +
+ +
+ +
+
+

+

+ +

+ +
+
+ + + regularny vyraz + input type="text" pattern + datum narodenia 2020.12.31 + + rodne cislo 123456/8888 +
+ + + +
+ + + + \ No newline at end of file diff --git a/Záriš_Šimon_1.C.html b/Záriš_Šimon_1.C.html new file mode 100644 index 0000000..e542c77 --- /dev/null +++ b/Záriš_Šimon_1.C.html @@ -0,0 +1,80 @@ + + + + +registracny formular 2 test + + + + +

Registracny formular

+
+ + + +

Meno a Priezvisko

+
+ +
+
+
+

+ +
+
+

Pohlavie

+
+ +
+ +
+ +

+ +
+
+

Vlastnosti

+
+ +
+ +
+ +
+ +
+ +
+ +

+ +
+
+

Dátum narodenia

+
+ +

+ +
+
+

Obľubená farba

+
+ +

+ +
+
+

Email

+
+ + + +
+ + + + + + \ No newline at end of file diff --git a/flex.css b/flex.css new file mode 100644 index 0000000..6308774 --- /dev/null +++ b/flex.css @@ -0,0 +1,59 @@ +body{ + min-width: 100%; + margin: 0; +} + +#Obsah { + text-align: center; +} + + +.wrapper { + display: flex; + flex-flow: row wrap; + justify-content: flex-start; + font-weight: bold; + text-align: center; +} + +.wrapper > * { + padding: 10px; + flex: 1 100%; + /*The flex blabblah*/ +} + +.header { + background: #eeaf61; +} + +.navigation { + background: #fb9062; +} + +.footer { + background: #ee5d6c; +} + +.main { + text-align: left; + background: #ce4993; +} + +.aside-1 { + background: #6a0d83; +} + +.aside-2 { + background: #35063e; +} + +/*responzivita*/ +@media all and (min-width: 800px) { + .main {flex: 3 10;} + .aside-1 {order: 1;} + .main {order: 2;} + .aside-2 {order: 3;} + .footer {order: 4} +} + + \ No newline at end of file diff --git a/flex.html b/flex.html new file mode 100644 index 0000000..85b14c8 --- /dev/null +++ b/flex.html @@ -0,0 +1,44 @@ + + + + + + + flex + + + + + + + + + + + + + + + + +
+
Header
+ +
+
+

Obsah

+
+
+ + +
Footer
+
+ + + + \ No newline at end of file diff --git a/formular.html b/formular.html new file mode 100644 index 0000000..6e7da3c --- /dev/null +++ b/formular.html @@ -0,0 +1,155 @@ + + + + +formular + + + + +

Formular priklad

+ + +
+ + +
+
+
+
+
+ +
+ +

+
+ +
+
+
+
+ +
+ +

+
+
+
+
+

+ + + +

+ +
+
+
+

+ + + +
+ +

+ +
+
+
+

+ + +
+ +
+

+
+ + + +
+
+ +

+
+ + + +
+ +

input type="number"

+
+ + +
+
+ +

+
+ + +
+
+ +

input type="tel" https://regexr.com

+
+ +

input type="url"

+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/grid.css b/grid.css new file mode 100644 index 0000000..2701f9f --- /dev/null +++ b/grid.css @@ -0,0 +1,42 @@ +#page { + display: grid; + width: 100%; + /*height: 250px;*/ + grid-template-areas: "head head head head" + "nav nav nav nav" + "left main main right" + "foot foot foot foot" +; + grid-template-rows: 6fr 1fr 6fr 5fr; + grid-template-columns: 1fr 1fr 1fr 1fr; + /*grid-template-columns: 150px 150px 150px 150px;*/ +} + +#page > header { + grid-area: head; + background-color: #7c60f7; +} + +#page > nav { + grid-area: nav; + background-color: #755481; +} +#page > .left { + grid-area: left; + background-color: rgb(53, 69, 87); +} + +#page > .right { + grid-area: right; + background-color: rgb(77, 77, 87); +} + +#page > main { + grid-area: main; + background-color: #6e64ff; +} + +#page > footer { + grid-area: foot; + background-color: #7d79a1; +} \ No newline at end of file diff --git a/grid.html b/grid.html new file mode 100644 index 0000000..2acc5e0 --- /dev/null +++ b/grid.html @@ -0,0 +1,47 @@ + + + + + grid + + + + + + + + + + + + + CSS layout + grid_w3 + grid_moz + selektory + + +
+
Header
+ +
Left
+
Main area
+
Right
+
Footer
+
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/jsbutton.html b/jsbutton.html new file mode 100644 index 0000000..716d560 --- /dev/null +++ b/jsbutton.html @@ -0,0 +1,61 @@ + + + + + + Document + + + + + + + + +

1

+ + +

+

2

+

Javascript can change any type of html element.

+ + + +

3

+ + +

this is small content

+

another small paragraph

+

https://www.w3schools.com/jquery/

+

https://www.w3schools.com/html/html_scripts.asp/

+ +

4

+ + + + + + + + \ No newline at end of file diff --git a/layout.css b/layout.css new file mode 100644 index 0000000..6d80548 --- /dev/null +++ b/layout.css @@ -0,0 +1,249 @@ +body{ + min-width: 100%; + margin: 0; +} +.wrapper { + display: flex; + flex-flow: row wrap; + font-weight: bold; + text-align: center; + background-color: rgb(39, 81, 139); +} + +.wrapper > * { + /*padding: 10px;*/ + flex: 1 100%; +} + +.container{ + /* We first create a flex layout context */ + display: flex; + + /* Then we define the flow direction + and if we allow the items to wrap + * Remember this is the same as: + * flex-direction: row; + * flex-wrap: wrap; + */ + flex-flow: row wrap; + /* Then we define how is distributed the remaining space */ + justify-content: space-around; + margin-right: auto; + margin-left: auto; + min-height: auto; + max-width: 1200px; + min-width: auto; +} + +.container_menu{ + /* We first create a flex layout context */ + display: flex; + + /* Then we define the flow direction + and if we allow the items to wrap + * Remember this is the same as: + * flex-direction: row; + * flex-wrap: wrap; + */ + flex-flow: row wrap; + /* Then we define how is distributed the remaining space */ + justify-content: left; + margin-right: auto; + margin-left: auto; + min-height: auto; + max-width: 1200px; + min-width: auto; +} + +/******* header *******/ +header{ + background-color: #1a6699; +} + +#header .flex-item { + padding: 5px; + margin: 5px; + width: auto; + height: 30px; + line-height: 30px; + color: white; + font-weight: bold; + font-size: 1em; + text-align: center; +} + + +#header p{ + margin: 0; + padding: 0; +} + +/* navigation */ +/* Add a black background color to the top navigation */ +nav{ + background-color: #6497b1; +} +.topnav { + background-color: #65829c; + overflow: hidden; +} + +/* Style the links inside the navigation bar */ +.topnav a { + color: #ffefef; + text-align: center; + padding: 14px 16px; + text-decoration: none; + font-size: 17px; +} + +/* Add an active class to highlight the current page */ +.active { + background-color: #1c73adfd; + color: white; +} + +/* Hide the link that should open and close the topnav on small screens */ +.topnav .icon { + display: none; +} + +/* Dropdown container - needed to position the dropdown content */ +.dropdown { + float: left; + overflow: hidden; +} + +/* Style the dropdown button to fit inside the topnav */ +.dropdown .dropbtn { + font-size: 17px; + border: none; + outline: none; + color: white; + padding: 14px 16px; + background-color: inherit; + font-family: inherit; + margin: 0; +} + +/* Style the dropdown content (hidden by default) */ +.dropdown-content { + display: none; + position: absolute; + background-color: #f9f9f9; + min-width: 160px; + box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); + z-index: 1; +} + +/* Style the links inside the dropdown */ +.dropdown-content a { + float: none; + color: black; + padding: 12px 16px; + text-decoration: none; + display: block; + text-align: left; +} + +/* Add a dark background on topnav links and the dropdown button on hover */ +.topnav a:hover, .dropdown:hover .dropbtn { + background-color: #555; + color: white; +} + +/* Add a grey background to dropdown links on hover */ +.dropdown-content a:hover { + background-color: #ddd; + color: black; +} + +/* Show the dropdown menu when the user moves the mouse over the dropdown button */ +.dropdown:hover .dropdown-content { + display: block; +} + +main +{ + background-color: #77aaec; +} + + +/* Medium screens */ +@media all and (max-width: 800px) { + /******* header *******/ + #header { + /* When on medium sized screens, we center it by evenly distributing empty space around items */ + flex-flow: column wrap; + } + + #header .flex-item{ + padding: 2px; + margin: 2px; + line-height: 25px; + height: 25px; + margin-left: 0 !important; + } + + /******* navigation *******/ + + +} + + +/* Small screens */ +@media all and (max-width: 500px) { + /******* header *******/ + #header { + /* On small screens, we are no longer using row direction but column */ + flex-flow: column wrap; + } + #header .flex-item{ + padding: 2px; + margin: 2px; + line-height: 25px; + height: 25px; + color: black; + } + + /******* navigation *******/ + /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */ + .topnav a:not(:first-child), .dropdown .dropbtn { + display: none; + } + .topnav a.icon { + float: right; + display: block; + } + + .container_menu{ + display: flex; + flex-flow: row; + } + + /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */ + .topnav.responsive {position: relative;} + .topnav.responsive a.icon { + position: absolute; + right: 0; + top: 0; + } + .topnav.responsive a { + float: none; + display: block; + text-align: left; + } + .topnav.responsive .dropdown {float: none;} + .topnav.responsive .dropdown-content {position: relative;} + .topnav.responsive .dropdown .dropbtn { + display: block; + width: 100%; + text-align: left; + } + + .responsive{ + display: flex; + flex-flow: column; + } + +} \ No newline at end of file diff --git a/layout.html b/layout.html new file mode 100644 index 0000000..2d8bd5b --- /dev/null +++ b/layout.html @@ -0,0 +1,92 @@ + + + + Struktura stranky + + + + + + + + + + + + + + + + +
+
+ +
+ + + +
+

Apples

+

The apple is the pomaceous fruit of the apple tree.

+ +
+

Red Delicious

+

These bright red apples are the most common found in many + supermarkets.

+

...

+

...

+
+ +
+

Granny Smith

+

These juicy, green apples make a great filling for + apple pies.

+

...

+

...

+
+ +
+ +
+

pata

+
+
+ + + \ No newline at end of file diff --git a/sdfsdf.html b/sdfsdf.html new file mode 100644 index 0000000..3aa7ef7 --- /dev/null +++ b/sdfsdf.html @@ -0,0 +1,8 @@ +Midjourney
l o oa ltrwiwobysceigai// /imgieDralaceeisrnnih -o t p b tgnoniolloeiam/ //iiiimmmmmiii// imgegetr e gwtiph phi t l p whd idcs nam/ /imaine19wis wk cjj knuangoAengam/ /mgerwtnp geiok'syli a u f oco lttnai/ /maie9i ialdia e aful, bbbbb ,lufeopiliho uno iai igerrtctipn iisyli pr who gcr imi /mgnc0 hlrrfalen don aaa n ubodr eysrp iaferoegi mi nsn dpn ia,ci n ,hehrop im////mgeoetliaana nd net oeld ddmo hy d sedGe r lcfte im ig isp ioio g r,n rn,usdainai//iaimstrn th ld il rl l n cc cc n m o e uM eacs tbea/ ig tdr ,il t c rnasono imi/iaimeh ii f e l i w t e t t ,x e H stnt r g/ mnaup i o eggsonp gmiimg sh ,n i n l l lte yttoe, rhupp o , H s eiit r a iggle i rtet chntdo gmiiana/ geiyi f f o ltr cytd ot nnkep,eoooooneeasiiar hau , n pn naaeebii /g a to iremrecnimiianpea,thf i f oK r o d wmcgetrlmboawnars srfnesutp snopi i uy , e gsnrem / r rroinsc egmianama i O e e bt c t eollrnon titgsRcocoocoo sst gs etnst unria in oc e osryiem r cnt sguotnnaimgfils eO ga r e,bniiulbii igote p aa a ck aitos b i henemr ik s nr e nsrnrni ieteearcruimman cac o ub uk,cioaio stRr o m it i n nm pn k elorgecotn or hy c e nM nti/ g teeagcr gmmg lsft , hlat hen gh / r u i nvlaIIpppIaei aag nn la etsd8iouwimg g c da bdud m nlru sgrcr gmmiPlag eae iocoat,t in tx p n n y vIeerr eititti eecfeoao p a sasm ss i i ,r , rnronng tl,caiuaamiaaiflbo f c eo,li is gt nin yvcea e r r o cot tpa v it,sf raI,l s ssrn a pea , nurn/sotfw e lnaaiPlboffl ub tann in itver e s eet,o eieood th sae t a crwym,h c i eyloid, n i r rcyiunee esfntregag dag oe d Cttatn ap , uyrsr a t v b e hee l eeteo c ,aere iec or jc a e icohrei rk i , hogilnoh whetiiaan isfl / Cttidsl n o hdic rrii we eitrn M s zU,L M nfrs i a aa re ol as aealeao i , hogilc igtregaiPlbmp n u oatelote h aysb d ,i eeh M,is guM aode m pM te ae eliafty ao nu w d8yle r 3 i rcsnhld rptngge icu'e hr egti,ntgi bnre tn sar se ,iPe ra tom /us e A thbk igmit, u d8yue o 5 r i ge fahetyigg osef esn e Cmartn m oouyr fs esc ht ,r tf neinv T sAb n lefr d, rna gdlln t mtt u o n.aftrd K te e ca eroh dbpisigialeei rn efei i,nloig, uhpuir we ddanr n,yLc atm,a,a vnemeoni sli b dla lcwJ ua zcilue, s c r h dbaiAigiolira , r ntiredpn ou nll fm iinoccc lmc/ l f t o et sbseaoydgdnd n s8rueal f teme c ef f.opesign liray ,te csrcip o tlt n ciean icwJ wcoged ri 3 e n rehlna nyngiareek , eaitirep c tlt t rnr wmrre na oeiaool u S wcdwc mceii i ra ei ihlti u eo d u inr mttp n tl rdisodr s tnt latiTiienta se Cogttiene uhfbc st rsi e ra i rrb m i p rlo dlflt inw jaa t aodaes c h, ui d meinire ip nr i enthd f tScci wt bd a uii nvi/,m,lm, o/vut l ut roet otaie oyeaoe w soseews S h d lntoTnietta,ue e ka m ueteli t cn e tii an unn vuu nb dr ir st tgwo tinort st evod kk e f gtw raoosee nnRf ei eo nma p tuil e we np hr dM e y mp y tn tu ah rrtt oi i ahod , sc aam k , a ea- , e,dui emc nnisi ceeuh nmcai i iutil i stho ta gtn u t u t r t C iade ts rhda i a l.cfvoe oh w j el yii Hen m nnisn ceto laiteims cu, usylo n Siwtrv t sno b t o ae a caoaihorrosnn nnir sta drirtdu , lf rh yii Henrm nno iecnp s|itnsg topl bu, ml cbit Cs aW ,,e ese ww tr ituiale ei sah ,c r shae ia c t j ds ynduripentnnsrrab s a b hlmn toh u thl -o n o scCr t aewiktd na alr niuae el ih sk a dtL rt s e.aaspnieeen atnrrn e hlaoann c o d oip rolcos-ff-craifgaarknn echt cy ad iw ecu raeambsg a ia l nh n i t e enreaeesrt lei e hnmatnt lt y s m,iolt tlki al hi tlo eh rn eh liaagrs r a v a i ,e nt lt aspnn e eetard ll |e idnnnn ef i et ye i ii a hy s pbe np te mt l yklrdichiwhu h t i rc . p t rroartciteaeeta3v,crp i de |n ioinoc wint li yefeee ey sl tgpeti wk l d g tlsndr oebe g d rc aoc a a wastti ra eantinacaa r aee h onmanaci a i iifkyehohwnod e eacoyit oe bigs h i tt oc c t apopt p otej taenngtr,p o Sa e hn d,oniwwindwddn e erlt t y nndroevxerbins va m s n aei c , a gibeg ciotej torvil teu o a i m rt l re g enit ydretenle tsi vh db s iu os inrn/ e pa oamid ifr hato5gr,btrnoa xo mu i,nl,aoytiereenll bl t, n db b , euog e i ef akoa smiooar i baa taa/bi,oetue,hnriiiirne rrasg tnnotieeretdur,abl ga c c o s b ognei r n i ef gabeaeimofi ro sifpbypntit ap1 ioooooom 1pootr oeaorltitdue dnnftrd cw ii , b r pnbg it ,a s b cosa oa t yiouysinoohhhooooooohhauuvaetitteternrrisfy r io i t s r entn/ t el t s tea ninnna os amll yyyy leds utcaoper uofsetn ow c t , s, bikni t , a aef a iaap o en oh n g ttt garntern fa it i ci coc r pe wnkni s ba eese n iclveidemmmmmedievt dn lit i e e pa risi/ s m hess edirr prrriore h i e i r ,e b i a v s no ihhhG GGGhh h c e J a l bpgoi/ __ __ _ _ _ | \/ (_)__| |(_)___ _ _ _ _ _ _ ___ _ _ | |\/| | / _| || / _ \ || | '_| ' \/ -_) || ||_| |_|_\__,_|/ \___/\_,_|_| |_||_\___|\_, | |__/ |__/

About


Midjourney is an independent research lab exploring new mediums of thought and expanding the imaginative powers of the human species.


We are a small self-funded team focused on design, human infrastructure, and AI. We have 11 full-time staff and an incredible set of advisors.

Executives

David Holz

Previously: Founder Leap Motion, Researcher at NASA, Max Planck

Advisors

Jim Keller

Lead Silicon at Apple, AMD, Tesla, Intel, Coauthor X86-64, CTO Tenstorrent

Nat Friedman

CEO Github, Chairman of GNOME Foundation

Philip Rosedale

Founder of Second Life, CTO RealNetworks

Bill Warner

Founder of Avid Technology, inventor of nonlinear video editing

Research and Engineering

Daniel

Max

Jack

Thomas

Red

Sam

Nadir

Sebastian

Community Management

fnuckle (Katryna)

Ancient Chaos

========================================================================================================================================================================================================================================================================================================================================================================================================================================================================

Careers


We're a small, self-funded, fully-distributed team and we're actively hiring!


Come help us scale, explore, and build humanist infrastructure focused on amplifying the human mind and spirit.


If you're sure you can help, but don't see a position that fits, email us.


We look forward to hearing from you.

========================================================================================================================================================================================================================================================================================================================================================================================================================================================================

Contact


For product support or questions please join our Discord and ask questions in our #support chatrooms.


For billing support:

billing@midjourney.com

For Journalist inquiries:

press@midjourney.com

Terms of ServicePrivacy Policy
\ No newline at end of file diff --git a/tabulky.css b/tabulky.css new file mode 100644 index 0000000..a95f22d --- /dev/null +++ b/tabulky.css @@ -0,0 +1,57 @@ +/*pre tabulky*/ +/* ID zapisujeme v css znakom # */ +#tabulka2, #tabulka2 th, #tabulka2 td +{ + border: 1px solid black; + border-collapse: collapse; +} +/* CLASS zapisujeme v css znakom . */ +.podfarbenie tr +{ + background-color: red; +} + +#tabulka3, #tabulka3 th, #tabulka3 td +{ + border: 1px solid black; + border-collapse: collapse; +} + +.podfarbenie2 tr:nth-child(even) +{ + background-color: red; +} +.podfarbenie2 tr:nth-child(odd) +{ + background-color: blue; +} + +.podfarbenie2 th +{ + background-color: black; + color: white; +} +.podfarbenie2 td:nth-child(3) +{ + text-align: center; + background-color: #2196F3 !important; +} +.podfarbenie2 tr:nth-child(2) +{ + text-align: center; + background-color: green !important +} + +.podfarbenie2 tr:hover +{ + text-align: right; + background-color: orange !important +} + + +.podfarbenie2 tr:hover { + background-color: green; + transition:duration: 1s; + transition-timing-function: linear; + transition-delay: 0.3s; +} \ No newline at end of file diff --git a/tabulky.html b/tabulky.html new file mode 100644 index 0000000..3635279 --- /dev/null +++ b/tabulky.html @@ -0,0 +1,97 @@ + + + + + Tabulky + + + + + + +

Struktura tabulky

+ + + + + + + + + + + +
PrvýDruhýTretí
123
+ +
+ +

Oramovanie tabulky

+ + + + + + + + + + + +
PrvýDruhýTretí
123
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PrvýDruhýTretí
123
123
123
123
123
+ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/uloha.css b/uloha.css new file mode 100644 index 0000000..362b948 --- /dev/null +++ b/uloha.css @@ -0,0 +1,22 @@ +a:hover { + background-color: yellow; + } + /* unvisited link */ +a:link { + color: green; + } + + /* visited link */ + a:visited { + color: green; + } + + /* mouse over link */ + a:hover { + color: red; + } + + /* selected link */ + a:active { + color: yellow; + } \ No newline at end of file diff --git a/uloha.html b/uloha.html new file mode 100644 index 0000000..738e457 --- /dev/null +++ b/uloha.html @@ -0,0 +1,260 @@ + + + + Tabulky + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
textČíslaMenáAdresyObľúbené čísloObľúbená farbaObľúbené jedloRodiskoRok narodenia Pohlavie
90133text164ModráKakaove rezanceBratislava1994Muž
90133text2MiroŠtefániková 912červenáGulášPoprad1990Muž
90133text3KatkaKrátka 747FialováBratislava2001Žena
90133text4JankoPekná 994ŽltáNeznámeMuž
90133text5MagdalénaPekná 5144ZelenáŽena
90133text6PeterNová 12298ČervenáSlepačí vývarBanská Bystrica1973Muž
90133text7FilipStará 210FialováKebabBratislava2004Muž
90133text7ĽubomírStará 1945ModráBurgerBratislava1996Muž
90133text8DavidHrdinská 268ČervenáMakové rezanceBytča2005Muž
90133text9MariannaStará 630ZelenáDonutyBratislava2014Žena
90133text10FélixDlhá 1468ModráPizzaČunovo1998Muž
90133text11PatrikKrásna 944ŽltáDžemove guľePezinok2001Muž
90133text12FiloménaPekná 1549FialováStudená kávaBratislava1990Žena
90133text13SebastianKrátka 9311ČervenáPizzaBratislava2000Muž
90133text14sofiaPekná 1578ZelenáParené buchtyBratislava2001Žena
90133text15MatúšDlhá 276ŽltáBryndzové haluškyVranou nad topľou1500Muž
+ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ulohaformular.html b/ulohaformular.html new file mode 100644 index 0000000..f8e95f3 --- /dev/null +++ b/ulohaformular.html @@ -0,0 +1,61 @@ + + + + +formular + + + + +

Formular uloha

+ +
+ +
+
+
+
+
+ +
+ +

+
+
+
+
+

+ + + +
+ +

+ +

+ + +
+
+
+

+ + +
+
+ +

+
+ + + +
+
+ +

+
+ + + +
\ No newline at end of file diff --git a/upravaformularov.css b/upravaformularov.css new file mode 100644 index 0000000..4a5eca0 --- /dev/null +++ b/upravaformularov.css @@ -0,0 +1,15 @@ +#prvy input +{ + width: 100% +} + +#druhy input[type=text] , #druhy input[type=number] + + width: 100%; + padding: 12px 20PX; + margin: + + + + + diff --git a/upravaformularov.html b/upravaformularov.html new file mode 100644 index 0000000..a934fa9 --- /dev/null +++ b/upravaformularov.html @@ -0,0 +1,42 @@ + + + + + + Document + + + +
+
+ + + cislo + + + +
+ +
+
+
+ + + cislo + + +
+
+
+ +
+
+
+ + + + + \ No newline at end of file diff --git a/wwwuloha.html b/wwwuloha.html new file mode 100644 index 0000000..e83d583 --- /dev/null +++ b/wwwuloha.html @@ -0,0 +1,61 @@ + + + Autíčka pre každého + + + + + + + + + + + + + + + + + + + + + +
+
Obľúbené inzeráty Moje inzeráty Pridať inzerát
+ + +
+
+
+ + Čo: + + + + PSČ (miesto): + Okolie: km + Cena od: - do: + +
+
+
+
+ + \ No newline at end of file diff --git a/wwwuloha2.html b/wwwuloha2.html new file mode 100644 index 0000000..d19013b --- /dev/null +++ b/wwwuloha2.html @@ -0,0 +1,119 @@ + + + + + + Bambusové ponožky + + + +
+

Bambusové ponožky od majstra

+
+ +
+

About Us

+

Welcome to our website! We specialize in high-quality bamboo socks.

+
+
+

Cheap Bamboo Socks

+

Here you can find affordable bamboo socks:

+ +
+ + + \ No newline at end of file