diff options
author | Ariel <ariel@rit.edu> | 2024-09-12 16:10:26 -0400 |
---|---|---|
committer | Ariel <ariel@rit.edu> | 2024-09-12 16:10:26 -0400 |
commit | 85623af72399d38739abad6b78554b888f20c01c (patch) | |
tree | 22bb211f7a0e2ce350fba322d92638c720b6c265 | |
parent | 5efa38c92863a9c0fd5e37e148964d2d7062f97a (diff) | |
download | bookmarks-home-85623af72399d38739abad6b78554b888f20c01c.tar.gz bookmarks-home-85623af72399d38739abad6b78554b888f20c01c.tar.bz2 bookmarks-home-85623af72399d38739abad6b78554b888f20c01c.zip |
index and style push
-rw-r--r-- | index.html | 14 | ||||
-rw-r--r-- | style.css | 11 |
2 files changed, 19 insertions, 6 deletions
@@ -1,15 +1,17 @@ +<!-- https://react.dev/ --> + <!-- React style sheets and docs --> + + <!DOCTYPE html> <head> - <title>TabTitle</title> - <link src="style.css" rel="Style"> - <div></div> + <title>Index Site</title> + <link rel="stylesheet" href="style.css"> </head> <body> <div id="Topbar"> - <a href="https://sowgro.net/">sowgro</a>" + <a href="https://sowgro.net/">sowgro</a> <a href="https://rit.edu">RIT</a> - </div> -</body>
\ No newline at end of file +</body> diff --git a/style.css b/style.css new file mode 100644 index 0000000..2fc9aee --- /dev/null +++ b/style.css @@ -0,0 +1,11 @@ +body{ + font-size: 15; + font-family: 'Courier New', Courier, monospace; +} + +#Topbar { + color: white; + display: flex; + flex-direction: row; + background-color: black; +}
\ No newline at end of file |