From 83f2fa40444db54770ab0fc06da05b90a339b7eb Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Fri, 22 Jul 2022 22:54:07 -0700 Subject: [PATCH] moved style to external style sheet style.css, add contact information in contact.html --- contact.html | 27 +++++++++++++++++++++++++++ index.html | 35 ++++++----------------------------- style.css | 26 ++++++++++++++++++++++++++ 3 files changed, 59 insertions(+), 29 deletions(-) create mode 100644 contact.html create mode 100644 style.css diff --git a/contact.html b/contact.html new file mode 100644 index 0000000..222798a --- /dev/null +++ b/contact.html @@ -0,0 +1,27 @@ + + + + + tronnet homepage + + + +

tronnet

+

Affordable custom server solutions.

+

Buisness Inqueries

+

+ For buisness related inquiries, please email requests@tronnet.net with one of the following subject tags: +

+

+

Support Inquries

+

If you are a user of tronnet, please refer to the documentation for information about how to recieve technical support.

+

Personal Inquries

+

Tronnet does not publish personal information of users, except those published in the User Directory.

+
+ +
+ + \ No newline at end of file diff --git a/index.html b/index.html index 8398d99..016383f 100644 --- a/index.html +++ b/index.html @@ -3,34 +3,7 @@ tronnet homepage - +

tronnet

@@ -45,5 +18,9 @@
+

Information

+
+ +
- + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..83291ed --- /dev/null +++ b/style.css @@ -0,0 +1,26 @@ +.std-text { + font-family: monospace; + color: white; + margin: 20px 0px 20px 0px; +} +.btn-group button { + background-color: #00ff00; + border: 1px solid #00ff00; + color: black; + padding: 10px 24px; + margin: 0px 20px 0px 20px; + cursor: pointer; + float: left; +} +.btn-group button:not(:last-child) { + border-right: none; +} +.btn-group:after { + content: ""; + clear: both; + display: table; +} +.btn-group button:hover { + background-color: #00AA00; + border: #00AA00; +} \ No newline at end of file