mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2025-12-29 11:45:20 -05:00
18 lines
430 B
PHP
Executable File
18 lines
430 B
PHP
Executable File
<?php
|
|
header("Cross-Origin-Embedder-Policy: require-corp");
|
|
header("Cross-Origin-Opener-Policy: same-origin");
|
|
header("Cross-Origin-Resource-Policy: same-origin");
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>HTML Test Page</title>
|
|
<link rel="icon" href="https://developer.mozilla.org/favicon.ico" />
|
|
<style>body {color: white; background: darkslategray}</style>
|
|
</head>
|
|
<body>
|
|
Favicon Test Page
|
|
</body>
|
|
</html>
|