mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-18 06:17:21 +00:00
26 lines
No EOL
792 B
HTML
26 lines
No EOL
792 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no, viewport-fit=cover" />
|
|
<title>Test External Script Full Path</title>
|
|
<style>
|
|
body {
|
|
background-color: pink; /* Start Pink, turn Cyan on success */
|
|
color: black;
|
|
font-size: 40px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h1>TEST EXTERNAL FULL (Pink = Wait / Cyan = Success)</h1>
|
|
</div>
|
|
<!-- Load the external script using absolute file path -->
|
|
<script src="file:///android_asset/public/test_script.js"></script>
|
|
</body>
|
|
</html> |