Updated website

This commit is contained in:
114465 2024-05-16 22:16:21 -04:00
parent f79525b2e8
commit 85b186eb32
4 changed files with 49 additions and 4 deletions

View File

@ -8,4 +8,8 @@ This site is not hosted publicly at the moment because I don't own a domain name
## Usage
Use the Dockerfile to build a docker image and then make a container to view the site
Use the webserver configuration file and the index.html to run the site or use an alternate webserver of your choice
## Docker
Docker is really not needed to run a site so I plan to make a diffrent repo for docker and the like

23
website/about/index.html Normal file
View File

@ -0,0 +1,23 @@
<html>
<head>
<title>
About
</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<h1>
About
</h1>
<hr>
<a href="/">Home</a>
<a href="/about/">About</a>
<hr>
<p>
This website uses strictly html and css at the moment but I plan to use rust in future versions as a replacemnt for javascript.
</p>
<p>
This site is also using the nord theme for most of the colors and Source Code Pro as the font.
</p>
</body>
</html>

View File

@ -3,13 +3,16 @@
<title>
Demo Site
</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="/style.css"/>
</head>
<body>
<h1>
Welcome!
</h1>
<hr>
<a href="/">Home</a>
<a href="/about/">About</a>
<hr>
<p>
This website is using a CSS stylesheet.
</p>

View File

@ -1,11 +1,26 @@
body {
background-color: #E7E2D2;
background-color: #e7e2d2;
}
h1 {
margin-left: 5%;
font-family: "Source Code Pro", monospace;
font-weight: bold;
}
p {
margin-left: 10%;
margin-left: 15%;
font-family: "Source Code Pro", monospace;
}
a {
margin-left: 5%;
font-family: "Source Code Pro", monospace;
color: #5e81ac;
}
a:hover {
color: #d08770;
}
a:visited {
color: #b48ead;
}