test
This commit is contained in:
parent
2f0d21d321
commit
dd669afdfc
4 changed files with 30 additions and 2 deletions
19
AIn/atlas_games/index.html
Normal file
19
AIn/atlas_games/index.html
Normal 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
7
AIn/atlas_games/index.js
Normal 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);
|
4
AIn/atlas_games/manifest.json
Normal file
4
AIn/atlas_games/manifest.json
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"display": "standalone",
|
||||
"orientation": "portrait"
|
||||
}
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue