This commit is contained in:
admin 2024-01-09 15:08:56 +01:00
parent 09e85b723d
commit 5efb00f2bc
4 changed files with 229 additions and 0 deletions

37
index.html Normal file
View file

@ -0,0 +1,37 @@
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/styles.css">
<title>Spitfire</title>
</head>
<body style="background-color: black;">
<div class="bg-animation">
<div id="stars"></div>
<div id="stars2"></div>
<div id="stars3"></div>
<div id="stars4"></div>
<div class="center-text" class="link-text">
<p>
<h1>Spitfire Browser</h1>
<h3>available soon™</h3>
<br> <!-- https://sourceforge.net/projects/spitfire-browser/ -->
<a href="#">Windows</a>
<a href="#">Linux</a>
<a href="#">macOS</a>
<a href="#">chromeOS</a>
<br>
<br>
</p>
</div>
<div class="link-text">
<a href="https://search.spitfirebrowser.com/">🔍</a>
</div>
</div>
</body>
</html>

19
main.go Normal file
View file

@ -0,0 +1,19 @@
package main
import (
"fmt"
"net/http"
)
func main() {
// Define the directory where your HTML and CSS files are located
http.Handle("/", http.FileServer(http.Dir(".")))
// Start the web server on port 8080
port := 8369
fmt.Printf("Server is running on http://localhost:%d\n", port)
err := http.ListenAndServe(fmt.Sprintf(":%d", port), nil)
if err != nil {
fmt.Println("Error:", err)
}
}

173
styles.css Normal file

File diff suppressed because one or more lines are too long

BIN
your-big-logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB