default files
This commit is contained in:
commit
8a44c0fe9f
23
Web.config
Normal file
23
Web.config
Normal file
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<system.webServer>
|
||||
<rewrite>
|
||||
<rules>
|
||||
<rule name="RemoveWww">
|
||||
<match url="(.*)" />
|
||||
<conditions>
|
||||
<add input="{HTTP_HOST}" pattern="^pridentifier\.com$" negate="true" />
|
||||
</conditions>
|
||||
<action type="Redirect" url="https://pridentifier.com/{R:1}" />
|
||||
</rule>
|
||||
<rule name="HTTP/S to HTTPS Redirect" enabled="true" stopProcessing="true">
|
||||
<match url="(.*)" />
|
||||
<conditions logicalGrouping="MatchAny">
|
||||
<add input="{SERVER_PORT_SECURE}" pattern="^0$" />
|
||||
</conditions>
|
||||
<action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" />
|
||||
</rule>
|
||||
</rules>
|
||||
</rewrite>
|
||||
</system.webServer>
|
||||
</configuration>
|
56
index.html
Normal file
56
index.html
Normal file
@ -0,0 +1,56 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Pridentifier</title>
|
||||
<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=Asap&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<style>
|
||||
body {
|
||||
font-family: 'Asap', sans-serif;
|
||||
text-align: center;
|
||||
padding: 100px 0;
|
||||
background-color: #ffd1ff;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: rgb(255, 111, 147);
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: lightcoral;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: lightcoral;
|
||||
}
|
||||
|
||||
p {
|
||||
color: lightcoral;
|
||||
}
|
||||
|
||||
img#logo {
|
||||
width: 300px;
|
||||
max-width: 100%;
|
||||
margin-top: 205px;
|
||||
border: 8px solid #574358;
|
||||
border-radius: 0px 15px 0px 15px;
|
||||
box-shadow: 0px 0px 30px #77008877;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hello!</h1>
|
||||
<h2>Welcome to our site.</h2>
|
||||
<p>This is a beta test of Pridentifier, the new website that allows you (hopefully) to put in pride flag colors you have recently seen, but don't remember.</p>
|
||||
<h3>This, in turn, will give you close matches of pride flags of similar color, shade, or pattern.</h3>
|
||||
|
||||
<p><strong>Have fun!</strong></p>
|
||||
|
||||
<img id="logo" src="logo.png" />
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user