Skip to content

Commit ebdd54d

Browse files
committed
v1.12
1 parent 2b27274 commit ebdd54d

1 file changed

Lines changed: 60 additions & 0 deletions

File tree

index.htm

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>WebTraCom</title>
7+
<style>
8+
body {
9+
background-color: #312;
10+
color: #fda;
11+
text-align: center;
12+
font-family: sans-serif;
13+
}
14+
#logo {
15+
font-size: 2em;
16+
}
17+
#slogan {
18+
font-size: 1em;
19+
}
20+
#globe {
21+
width: 3.75em;
22+
height: 3.75em;
23+
}
24+
#prompt {
25+
font-size: 1.82em;
26+
font-weight: bold;
27+
}
28+
section {
29+
position: absolute;
30+
top: 50%;
31+
left: 50%;
32+
transform: translate(-50%, -50%);
33+
}
34+
</style>
35+
</head>
36+
<body>
37+
<section>
38+
<div id="logo">WebTraCom</div>
39+
<div id="slogan">Core Measurement for Mainframe Access on Attribution by Crypto assign</div>
40+
<svg id="globe" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
41+
<path d="M12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 18c-1.86 0-3.55-.64-4.89-1.71l4.89-7.54 4.89 7.54c-1.34 1.07-3.03 1.71-4.89 1.71zm-7.74-4.39l-.01-.01-2.23-3.43c-.09-.16-.14-.34-.14-.52 0-.61.5-1.1 1.11-1.1h1.97l1.25-1.95c-.52-.45-.98-.97-1.36-1.54l-1.51 1.4-.66-.66 1.6-1.6 1.51-1.4c-.37-.58-.83-1.1-1.36-1.54l-1.25-1.95h-1.97c-.61 0-1.11-.49-1.11-1.1 0-.19.05-.36.14-.52l2.24-3.43.01-.01c.25-.39.68-.64 1.16-.64h4c.48 0 .91.25 1.16.64l.01.01 2.23 3.43c.09.16.14.34.14.52 0 .61-.5 1.1-1.11 1.1h-1.97l-1.25 1.95c.52.45.98.97 1.36 1.54l1.51-1.4.66.66-1.6 1.6-1.51 1.4c.37.58.83 1.1 1.36 1.54l1.25 1.95h1.97c.61 0 1.11.49 1.11 1.1 0 .19-.05.36-.14.52l-2.24 3.43-.01.01c-.25.39-.68.64-1.16.64h-4c-.48 0-.91-.25-1.16-.64z"/>
42+
</svg>
43+
<div id="prompt">Prompt</div>
44+
</section>
45+
46+
<script>
47+
document.addEventListener("DOMContentLoaded", function(event) {
48+
// Load JavaScript file app.request.js
49+
const script = document.createElement('script');
50+
script.src = 'app.request.js';
51+
script.onload = function() {
52+
// Execute JavaScript from app.request.js
53+
app.request();
54+
};
55+
document.body.appendChild(script);
56+
});
57+
</script>
58+
59+
</body>
60+
</html>

0 commit comments

Comments
 (0)