From ebeae6abd8cc370a405db04d34c6320c455648dd Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 24 Sep 2024 18:30:00 +0100 Subject: [PATCH] made our page and styled it --- css/main.css | 17 +++++++++++++++++ index.html | 12 ++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 css/main.css create mode 100644 index.html diff --git a/css/main.css b/css/main.css new file mode 100644 index 0000000..69f5e06 --- /dev/null +++ b/css/main.css @@ -0,0 +1,17 @@ +.huge-text { + font-size: 150px; + font-family: fantasy; + text-align: center; + color:cornflowerblue; + text-shadow: 10px 10px 5px black; + transition: 0.5s; +} + +.huge-text:hover { + color:blue; +} + +.tiny-text { + font-size: 12px; + font-family:Verdana, Geneva, Tahoma, sans-serif; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..214c353 --- /dev/null +++ b/index.html @@ -0,0 +1,12 @@ + + + + + Connex's Little Piece of the Internet + + +

Connex's little Piece of the Internet +

+

We went to Old Street. We made a webpage. We added some CSS. We thought what to do next...

+ + \ No newline at end of file