This commit is contained in:
b 2021-08-03 20:20:59 -07:00
parent 2f0d21d321
commit dd669afdfc
4 changed files with 30 additions and 2 deletions

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html scroll-behavior="smooth">
<head>
<meta charset="UTF-8" />
<meta name="HandheldFriendly" content="true" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, width=device-width, user-scalable=no" />
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="TODO give image">
<link rel="manifest" href="manifest.json">
<title>WynnBuilder</title>
</head>
<body>
<p> Hello world! </p>
<script type="text/javascript" src="index.js"></script>
</body>
</html>

7
AIn/atlas_games/index.js Normal file
View file

@ -0,0 +1,7 @@
let url = "https://media.discordapp.net/attachments/662775844032348171/872287608061952062/unknown.png?width=735&height=613";
let img = document.createElement('img');
img.src = url;
document.body.appendChild(img);

View file

@ -0,0 +1,4 @@
{
"display": "standalone",
"orientation": "portrait"
}

View file

@ -7,8 +7,6 @@
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" media="screen and (min-width: 1100px)" href="wide.css"/>
<link rel="stylesheet" media="screen and (max-width: 1099px)" href="narrow.css"/>
<link rel="icon" href="favicon.png">
<link rel="manifest" href="manifest.json">
<title>ATLAS???</title>