diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-05 06:33:03 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-05 06:33:03 +0000 |
commit | 276c0e2adb0a43179d9aa7d690cd753a8e36628c (patch) | |
tree | ffffa70aa0f1ee2208400906174b9a43d228cde8 /wk8/pset/homepage | |
parent | 6c2420b09b2c8282fd530b63630c2915406d3265 (diff) |
Thu, Jul 4, 2024, 11:33 PM -07:00
Diffstat (limited to 'wk8/pset/homepage')
-rw-r--r-- | wk8/pset/homepage/index.html | 2 | ||||
-rw-r--r-- | wk8/pset/homepage/styles.css | 20 |
2 files changed, 21 insertions, 1 deletions
diff --git a/wk8/pset/homepage/index.html b/wk8/pset/homepage/index.html index 60d761f..2cf13ab 100644 --- a/wk8/pset/homepage/index.html +++ b/wk8/pset/homepage/index.html @@ -5,7 +5,7 @@ <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script> <link href="styles.css" rel="stylesheet"> - <title>home</title> + <title>Miau - Home Page</title> </head> <body class="centered"> <header class="large"> diff --git a/wk8/pset/homepage/styles.css b/wk8/pset/homepage/styles.css index e69de29..ceeb12b 100644 --- a/wk8/pset/homepage/styles.css +++ b/wk8/pset/homepage/styles.css @@ -0,0 +1,20 @@ +.centered +{ + text-align: center; +} + +.large +{ + font-size: large; +} + +.medium +{ + font-size: medium; +} + +.small +{ + color: red; + font-size: small; +} |