diff options
author | 0neGal <mail@0negal.com> | 2023-08-21 03:06:41 +0200 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2023-08-21 03:06:41 +0200 |
commit | 6d108f5e94ecac6b724e128bae3af3d9f3c446e8 (patch) | |
tree | d3d9f21e3822cb4259ee34b30cd5ee356ef43c53 /docs/index.html | |
parent | f9c64963ac1e2dc3d5b5db7ab6ecfb5b6385bfa9 (diff) | |
download | Viper-6d108f5e94ecac6b724e128bae3af3d9f3c446e8.tar.gz Viper-6d108f5e94ecac6b724e128bae3af3d9f3c446e8.zip |
added a basic but proper website for Viper
More changes may come down the line, but this is more or less complete,
I think?? You never know..
Diffstat (limited to 'docs/index.html')
-rw-r--r-- | docs/index.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/docs/index.html b/docs/index.html index a817e49..9616f46 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,8 +1,49 @@ +<!DOCTYPE html> <html> <head> <title>Viper</title> + <meta content="Viper" property="og:title"> + <meta content="images/viper.png" property="og:image"> + <meta content="Launcher+Updater for TF|2 Northstar" property="og:description"> + + <link rel="shortcut icon" href="images/viper.png" type="image/png"> + <meta content="#C7777F" data-react-helmet="true" name="theme-color"> + + <link rel="stylesheet" href="main.css"> + <link rel="preconnect" href="https://fonts.googleapis.com"> + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> + <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet"> + + <meta name="viewport" content="width=device-width, initial-scale=1.0,user-scalable=0,viewport-fit=cover"> </head> <body> + <div class="background"> + <div class="images"> + <div class="image active-noanim"></div> + </div> + <div class="color"></div> + </div> + + <div class="main"> + <div class="box"> + <div class="info"> + <div class="image"> + <img alt="Viper's logo" src="images/viper.png"> + <h1>Viper</h1> + </div> + <button> + <img src="images/windows.png"> + Download! + </button> + <a href="?release-page">Click for more download options</a> + </div> + </div> + <div class="box"> + <img title="A screenshot of Viper" alt="A screenshot of Viper" src="images/preview.png" class="preview"></div> + </div> + </div> + <script src="main.js"></script> + <script src="redirect.js"></script> </body> </html> |