commit f83ef2ccf6dc52ea32b08e43f36f54f4b73eac68 Author: Kevin ANATOLE Date: Sun Nov 7 17:04:41 2021 +0000 example diff --git a/css/index.css b/css/index.css new file mode 100644 index 0000000..73c2b11 --- /dev/null +++ b/css/index.css @@ -0,0 +1,4 @@ +body { + background-color: chocolate; + color: darkmagenta; +} diff --git a/css/main.css b/css/main.css new file mode 100644 index 0000000..6a3a639 --- /dev/null +++ b/css/main.css @@ -0,0 +1,19 @@ +body { + min-height: 100vh; +} + +p { + padding: 0; +} + +.title { + font-size: 3rem; + color: chartreuse; + font-style: oblique; + text-decoration: none; +} + +.title:hover { + font-weight: bold; + text-decoration: underline; +} diff --git a/css/second.css b/css/second.css new file mode 100644 index 0000000..d26ebb9 --- /dev/null +++ b/css/second.css @@ -0,0 +1,3 @@ +body { + background-color: darkolivegreen; +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..ad8570a --- /dev/null +++ b/index.html @@ -0,0 +1,16 @@ + + + + + + + + + Document + + +

Home Page

+ + Second Page + + \ No newline at end of file diff --git a/second_page.html b/second_page.html new file mode 100644 index 0000000..2003066 --- /dev/null +++ b/second_page.html @@ -0,0 +1,15 @@ + + + + + + + + + Document + + +

Second

+ Home + + \ No newline at end of file