Skip to content

Commit

Permalink
Create test.html
Browse files Browse the repository at this point in the history
  • Loading branch information
a1exsDev authored Oct 13, 2024
1 parent 6cc0a27 commit bd1df14
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions test.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nintendo Switch Navigator Info</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
</style>
</head>
<body>
<h1>Nintendo Switch Navigator Information</h1>
<pre id="navigator-info"></pre>

<script>
// Get navigator information
const navigatorInfo = JSON.stringify(navigator, null, 2);

// Display it on the webpage
document.getElementById('navigator-info').textContent = navigatorInfo;

// Optionally log to the console
console.log(navigator);
</script>
</body>
</html>

0 comments on commit bd1df14

Please sign in to comment.