mirror of https://github.com/electron/electron
14 lines
384 B
HTML
14 lines
384 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'">
|
|
<title>Menu Counter</title>
|
|
</head>
|
|
<body>
|
|
Current value: <strong id="counter">0</strong>
|
|
<script src="./renderer.js"></script>
|
|
</body>
|
|
</html>
|