Commiting changes
This commit is contained in:
BIN
public/.DS_Store
vendored
Normal file
BIN
public/.DS_Store
vendored
Normal file
Binary file not shown.
35002
public/200.json
35002
public/200.json
File diff suppressed because it is too large
Load Diff
@@ -1,3 +0,0 @@
|
||||
{
|
||||
"detail": "Route not found, or request malformed...thats all im saying."
|
||||
}
|
||||
2
public/assets/main.js
Normal file
2
public/assets/main.js
Normal file
@@ -0,0 +1,2 @@
|
||||
let body = document.getElementsByTagName('h1');
|
||||
console.log(body);
|
||||
4
public/assets/style.css
Normal file
4
public/assets/style.css
Normal file
@@ -0,0 +1,4 @@
|
||||
body {
|
||||
color: white;
|
||||
background: purple;
|
||||
}
|
||||
BIN
public/images/6.jpg
Normal file
BIN
public/images/6.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 256 KiB |
12
public/index.html
Normal file
12
public/index.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Toolshed</title>
|
||||
<link rel="stylesheet" href="/assets/style.css">
|
||||
<script src="/assets/main.js" defer></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>This is my toolshed. This web server is built using Rust :)</h1>
|
||||
<img src="/images/6.jpg"/>
|
||||
</body>
|
||||
</html>
|
||||
16
public/pages/about.html
Normal file
16
public/pages/about.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<!Doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>About</title>
|
||||
<style>
|
||||
body {
|
||||
background: purple;
|
||||
padding: 20px;
|
||||
color: white;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>This is the about page!</h1>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user