update @ Wed 28 Jul 04:52:31 EEST 2021

This commit is contained in:
Ari Archer 2021-07-28 04:52:31 +03:00
parent 334b62b73f
commit 608e5608cb
14 changed files with 78 additions and 1 deletions

View file

@ -12,7 +12,6 @@
<script src="/content/js/commands/index.js" defer></script> <script src="/content/js/commands/index.js" defer></script>
<script src="/content/js/generic/generic.js" defer></script> <script src="/content/js/generic/generic.js" defer></script>
<script src="/help/index.js" defer></script>
</head> </head>
<body> <body>
<nav class="nav-main" id="bar"> <nav class="nav-main" id="bar">
@ -54,6 +53,14 @@
<a href="/page/random/minimal.txt">This page</a> is completely bare bones.<br/> <a href="/page/random/minimal.txt">This page</a> is completely bare bones.<br/>
It's literally just text. No JavaScript, no CSS and no HTML at all. Just bare, plain English. It's literally just text. No JavaScript, no CSS and no HTML at all. Just bare, plain English.
</p> </p>
<br/>
<h1 id="minimum">#2 Tbh idc</h1>
<p>
<a href="/page/random/page/tbh_idc">This page</a> is just a page where people ask me to add them.<br/>
So I did.
</p>
</div> </div>
</div> </div>
</div> </div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

View file

@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aris_Web::Random</title>
<link rel="stylesheet" href="/content/styles/generic/generic.css">
<link rel="stylesheet" href="/content/styles/box/box.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/hack-font@3/build/web/hack.min.css">
<script src="/content/js/commands/index.js" defer></script>
<script src="/content/js/generic/generic.js" defer></script>
<script src="/page/random/page/tbh_idc/index.js" defer></script>
</head>
<body>
<nav class="nav-main" id="bar">
<ul class="nav-list" id="bar-list">
</ul>
<noscript>
<style>
.nav-list {
display: none;
}
</style>
<div class="error">
For full functionality of this site it is necessary to enable JavaScript.<br/>
Here are the <a href="https://www.enable-javascript.com/" target="_blank">
instructions how to enable JavaScript in your web browser</a>.
</div>
</noscript>
</nav>
<div id="menus">
<div class="mobile-menu hiddenMobile-noanim" id="mobile-menu">
</div>
</div>
<div class="content" id="content" name="content">
<div class="box">
<h1 class="heading" id="welcome">Welcome to <i>"To be honest, I don't care"</i>!</h1>
<ul class="contents">
<li><a href="#welcome">Welcome</a></li>
<li><a href="#instagram_random_person">Random person on instagram</a></li>
</ul>
<div class="content">
<h1 id="instagram_random_person">#1 Some random person on instagram</h1>
<p id="random_person_instagram"></p>
</div>
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,12 @@
const random_person_instagram = document.getElementById("random_person_instagram");
function create_img_elements(html_element, count, dir) {
for (let i = 1; i < count + 1; ++i) {
let img = document.createElement("img");
img.setAttribute("src", `${dir}/${i}.jpg`);
img.setAttribute("width", "100px")
html_element.appendChild(img);
}
}
create_img_elements(random_person_instagram, 11, '/page/random/page/tbh_idc/img/random_person_on_instagram');