mirror of
http://amkj.cqemme.com:10080/nejery/test.git
synced 2026-08-25 07:18:30 +08:00
17 lines
592 B
HTML
17 lines
592 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'">
|
|
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">
|
|
<title>Hello World!</title>
|
|
</head>
|
|
<body>
|
|
<!-- You can also require other files to run in this process -->
|
|
<iframe src="https://www.nejery.com" width="800" height="600" style="width:800px; height: 800px"></iframe>
|
|
|
|
<script src="./renderer.js"></script>
|
|
</body>
|
|
</html>
|