Created
December 5, 2024 16:06
-
-
Save prof3ssorSt3v3/ab53264c7387375e1b7bb66f3ee41a06 to your computer and use it in GitHub Desktop.
Content-Security-Policy Discussion File
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>CSP</title> | |
<meta http-equiv="content-security-policy" content="default-src 'self'; " /> | |
<link rel="shortcut icon" href="" /> | |
<link rel="preconnect" href="https://fonts.googleapis.com" /> | |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | |
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet" /> | |
<link rel="stylesheet" href="css/main.css" /> | |
<script src="js/main.js" type="module"></script> | |
</head> | |
<body> | |
<header> | |
<h1>Page Title</h1> | |
</header> | |
<main> | |
<p> | |
<img src="http://picsum.photos/id/237/600" alt="Black lab puppy" /> | |
</p> | |
<p> | |
<video controls> | |
<source src="https://download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_640x360.m4v" type="video/mp4" /> | |
</video> | |
</p> | |
<p>Some more video sources can be found <a href="https://download.blender.org/peach/bigbuckbunny_movies/">HERE</a></p> | |
</main> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment