diff options
-rw-r--r-- | css/main.css | 55 | ||||
-rw-r--r-- | index.html | 36 |
2 files changed, 85 insertions, 6 deletions
diff --git a/css/main.css b/css/main.css new file mode 100644 index 0000000..20724e2 --- /dev/null +++ b/css/main.css @@ -0,0 +1,55 @@ +body +{ + background-color: #DCDCDC; + color: black; + font-family: sans-serif; + font-size: normal; + margin-left: 3em; + margin-right: 3em; +} +div.body +{ + margin-left: 3em; + margin-right: 3em; + padding: 1em; + background-color: white; + border-style: solid; + border-width: 2px; + border-color: black; +} +A:hover +{ + background:white; +} +A.button:hover +{ + background:none; +} +A:link +{ + text-decoration: none; + color: blue ; +} +A:visited +{ + text-decoration: none; + color: navy; +} +A:active +{ + text-decoration: none; + color: red; +} +h +{ + color: black; +} +p +{ + color: black; +} +li +{ + color: black; +} + @@ -1,13 +1,33 @@ <html> -<h3>##slackware (freenode) informational website</h3> +<head> +<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> +<meta http-equiv="expires" content="0" /> +<meta name="language" content="en-us" /> +<meta name="keywords" content="slackware freenode irc" /> +<meta name="abstract" content="##slackware on freenode" /> +<meta name="author" content="Robby Workman" /> +<meta name="contact" content="rworkman AT slackware.com" /> +<meta name="generator" content="vi" /> +<link rel="stylesheet" type="text/css" href="/css/main.css" /> +<title>##slackware info</title> +</head> - <p>Welcome to the offical information page for Freenode's ##slackware. - This page contains a bit of (hopefully) helpful information along - with the channel rules/guidelines. - </p> +<body> +<h2 align="center">##slackware (freenode) informational website</h2> + + <div class="body"> + <p>Welcome to the offical information page for Freenode's ##slackware. + This page contains a bit of (hopefully) helpful information along + with the channel rules/guidelines. + </p> + </div> + +<h3 align="center">General Channel Information</h3> + + <div class="body"> <ul> <li>Need a channel operator/moderator? Type "!ops" in your IRC client. Note that there's no guarantee that an op will currently @@ -32,8 +52,10 @@ Slackware Beginner's Guide</a>. </li> </ul> + </div> -<h3>##slackware channel rules/guidelines</h3> +<h3 align="center">##slackware channel rules/guidelines</h3> + <div class="body"> <ul> <li>Generally speaking, treat other users in the manner you'd like to be treated. No "flames" or trolling or nonsense behavior is @@ -175,5 +197,7 @@ <li>Have fun and Happy Slacking! </li> </ul> + </div> +</body> </html> |