From ad4296f051bfe898a3508c822dc00e7094654bfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=B3thZolt=C3=A1n?= Date: Thu, 13 Oct 2022 12:53:30 +0200 Subject: [PATCH] =?UTF-8?q?A=20html=20=C3=A9s=20a=20css=20hozz=C3=A1ad?= =?UTF-8?q?=C3=A1sa?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 27 ++++++++++++++++++++++ 2 files changed, 95 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..395d958 --- /dev/null +++ b/index.html @@ -0,0 +1,68 @@ + + + + + + + + + Rendelések + + + +

Megrendelés részletek

+

rendelés száma: 2

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Termék neveMennyiségNettó egységárÁfa %Bruttó ár
Poló L-es2 db1 495 Ft27%3 798 Ft
Poló S-es2 db1 495 Ft27%3 798 Ft
Bögre1 567 Ft1 db27%1 990 Ft
Baseball sapka1 db3 142 Ft27 %3 990
Összesen:13 576 Ft
+ + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..c52eebf --- /dev/null +++ b/style.css @@ -0,0 +1,27 @@ +*{ + margin: auto; +} +body{ + background-color: gray; + width: 800px; +} +h1{ + text-align: center; + font-size: 18px; +} +h2{ + text-align: center; + font-style: italic; +} + +table{ + border: 2px solid black; + border-collapse: collapse; +} +tr, td{ + border: 1px solid black; +} +img{ + width: 120px; + height: 120px; +} \ No newline at end of file