From 565e50b5205fef03bdfac1f8682315d6de9adabd Mon Sep 17 00:00:00 2001 From: Nezumi Date: Tue, 20 Jun 2023 14:05:00 +0700 Subject: [PATCH] Init sample code training chapter 10 --- Sample/training-10-sample/css/style.css | 35 +++++++++++++++++++++++++ Sample/training-10-sample/index.html | 28 ++++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 Sample/training-10-sample/css/style.css create mode 100644 Sample/training-10-sample/index.html diff --git a/Sample/training-10-sample/css/style.css b/Sample/training-10-sample/css/style.css new file mode 100644 index 0000000..0b54f1e --- /dev/null +++ b/Sample/training-10-sample/css/style.css @@ -0,0 +1,35 @@ +* { + font-family: Arial, Verdana, sans-serif; +} + +h1 { + font-family: "Courier New", monospace; +} + +i { + color: green; +} + +i { + color: red; +} + +b { + color: pink; +} + +p b { + color: blue !important; +} + +p b { + color: violet; +} + +p#intro { + font-size: 100%; +} + +p { + font-size: 75%; +} \ No newline at end of file diff --git a/Sample/training-10-sample/index.html b/Sample/training-10-sample/index.html new file mode 100644 index 0000000..09288f0 --- /dev/null +++ b/Sample/training-10-sample/index.html @@ -0,0 +1,28 @@ + + + + + + + + Introducing CSS + + + + + +

Potatoes

+

There are dozens of different + potato varieties. +

+

They are usually described as early, second early + and maincrop potatoes.

+

They are usually described as early, second early + and maincrop potatoes.

+ + + \ No newline at end of file