forked from Hamilton-Labs-Org/Electron-Publisher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
53 lines (51 loc) · 1.86 KB
/
home.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en-US">
<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' 'unsafe-inline';"
/>
<meta
http-equiv="X-Content-Security-Policy"
content="default-src 'self'; script-src 'self'"
/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello from Home Page!</title>
<link rel="stylesheet" type="text/css" href="./styles.css">
</head>
<body>
<h1>Hello from Home Page! 👋🏾</h1>
<p>👨🏾💻</p>
<p id="info"></p>
<a href="https://github.com/hamilton-labs?tab=repositories">
<img src="./assets/images/icon.png" alt="Hamilton Labs Logo" width="50" height="50">
</a>
<div>
<h1>This is your Home Page</h1>
<label for="title">1st experiment: </label>
<p>
<label for="title">Update the Title: </label><input type="text" id="title"/>
</p>
<p>
<button id="btn" type="button">Set New Title</button>
</p>
<span id="info"></span>
<p>
<span id="info">This app is using</span>
<span id="chrome"></span>,
<span id="node"></span>,
<span id="infoo">and </span>
<span id="electron"></span>.
</p>
</div>
<p id="info">Current theme source: <strong id="theme-source">System</strong></p>
<button id="toggle-dark-mode">Toggle Dark Mode</button>
<button id="reset-to-system">Reset to System Theme</button>
<button type="button" role="link" id=""><a href="index.html">Link to Start Page</a></button>
<p></p>
<button type="button" role="link" id=""><a href="https://hamilton-labs.com/">My Blog</a></button>
</body>
<script type="module" src="renderer.js"></script>
</html>