mirror of https://github.com/electron/electron
15 lines
457 B
HTML
15 lines
457 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'">
|
|
<link href="./styles.css" rel="stylesheet">
|
|
<title>Transparent Hello World</title>
|
|
</head>
|
|
<body>
|
|
<div class="white-circle">
|
|
<div>Hello World!</div>
|
|
</div>
|
|
</body>
|
|
</html> |