commit b67f2392fec3b563813869fff397b0ac77d965b5 Author: skrabanek Date: Wed Feb 23 11:05:09 2022 +0100 First Commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..a385000 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# 4.IM - HTML + CSS + JS opakování + +Zde je seznam pro opakování HTML+CSS+JS základů + AJAX \ No newline at end of file diff --git a/ajax.html b/ajax.html new file mode 100644 index 0000000..22ae151 --- /dev/null +++ b/ajax.html @@ -0,0 +1,31 @@ + + + + + + + Ajax + + +

AJAX demo

+ +
+

stiskni na tlačítko pro změnu

+ +
+ + + + + + \ No newline at end of file diff --git a/ajax.txt b/ajax.txt new file mode 100644 index 0000000..aff8494 --- /dev/null +++ b/ajax.txt @@ -0,0 +1,5 @@ +

AJAX PROVEDEN

+

lorem lorem lorem lorem

+

impsum impsum impsum impsum

+ +

python -m http.server

\ No newline at end of file diff --git a/cd_catalog.xml b/cd_catalog.xml new file mode 100644 index 0000000..2dac058 --- /dev/null +++ b/cd_catalog.xml @@ -0,0 +1,211 @@ + + + + Empire Burlesque + Bob Dylan + USA + Columbia + 10.90 + 1985 + + + Hide your heart + Bonnie Tyler + UK + CBS Records + 9.90 + 1988 + + + Greatest Hits + Dolly Parton + USA + RCA + 9.90 + 1982 + + + Still got the blues + Gary Moore + UK + Virgin records + 10.20 + 1990 + + + Eros + Eros Ramazzotti + EU + BMG + 9.90 + 1997 + + + One night only + Bee Gees + UK + Polydor + 10.90 + 1998 + + + Sylvias Mother + Dr.Hook + UK + CBS + 8.10 + 1973 + + + Maggie May + Rod Stewart + UK + Pickwick + 8.50 + 1990 + + + Romanza + Andrea Bocelli + EU + Polydor + 10.80 + 1996 + + + When a man loves a woman + Percy Sledge + USA + Atlantic + 8.70 + 1987 + + + Black angel + Savage Rose + EU + Mega + 10.90 + 1995 + + + 1999 Grammy Nominees + Many + USA + Grammy + 10.20 + 1999 + + + For the good times + Kenny Rogers + UK + Mucik Master + 8.70 + 1995 + + + Big Willie style + Will Smith + USA + Columbia + 9.90 + 1997 + + + Tupelo Honey + Van Morrison + UK + Polydor + 8.20 + 1971 + + + Soulsville + Jorn Hoel + Norway + WEA + 7.90 + 1996 + + + The very best of + Cat Stevens + UK + Island + 8.90 + 1990 + + + Stop + Sam Brown + UK + A and M + 8.90 + 1988 + + + Bridge of Spies + T'Pau + UK + Siren + 7.90 + 1987 + + + Private Dancer + Tina Turner + UK + Capitol + 8.90 + 1983 + + + Midt om natten + Kim Larsen + EU + Medley + 7.80 + 1983 + + + Pavarotti Gala Concert + Luciano Pavarotti + UK + DECCA + 9.90 + 1991 + + + The dock of the bay + Otis Redding + USA + Stax Records + 7.90 + 1968 + + + Picture book + Simply Red + EU + Elektra + 7.20 + 1985 + + + Red + The Communards + UK + London + 7.80 + 1987 + + + Unchain my heart + Joe Cocker + USA + EMI + 8.20 + 1987 + + diff --git a/form.html b/form.html new file mode 100644 index 0000000..a5f2d2b --- /dev/null +++ b/form.html @@ -0,0 +1,29 @@ + + + + + + + Document + + +

Formular

+ + +
+ + +
+
Požadavek na jméno:
+
+
a příjmení:
+ + + + + + + + \ No newline at end of file diff --git a/img.jpg b/img.jpg new file mode 100644 index 0000000..cd377e5 Binary files /dev/null and b/img.jpg differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..e961556 --- /dev/null +++ b/index.html @@ -0,0 +1,44 @@ + + + + + + + Document + + + +

header1

+
+

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Minima maiores ducimus sint impedit nam suscipit minus veritatis voluptatibus architecto adipisci fugit veniam quia laudantium ratione atque quasi similique, distinctio mollitia!

+ FORMULÁŘ + + + + + + + + + + + + + + + + + + + + + +
jednadvatri
abc
aabbcc
+ + + \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..c0a4b08 --- /dev/null +++ b/script.js @@ -0,0 +1,18 @@ +function zobrazit() { + let text = document.getElementById("gettext").value; + + document.getElementById("logsystem").innerHTML += "
  • "+text+"
  • "; +} + +function updatename() { + let fn = document.getElementById("firstname").value; + let ln = document.getElementById("lastname").value; + + document.getElementById("getfn").innerHTML = fn; + document.getElementById("getln").innerHTML = ln; +} + +function sectihodnoty(x,y) { + var z = x.toString()+y.toString(); + console.log("x+y=z --> "+x+"+"+y+"="+z); +} diff --git a/style.css b/style.css new file mode 100644 index 0000000..43ad8ba --- /dev/null +++ b/style.css @@ -0,0 +1,13 @@ +@import url('https://fonts.googleapis.com/css2?family=Comforter&family=Roboto:wght@300&family=Rubik+Beastly&display=swap'); + +h1{ + color:blue; + color: #854e33; + font-family: 'Roboto', sans-serif; +} + +table, th, td { + border: 1px solid; + border-collapse: collapse; +} + diff --git a/xml.html b/xml.html new file mode 100644 index 0000000..26eb8c5 --- /dev/null +++ b/xml.html @@ -0,0 +1,41 @@ + + + + + + + XML test + + +

    CD obchod

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