blob: 240e6caef98e9401fa1556ebd553ef480cae08a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'">
<title>Hello World!</title>
<link rel="stylesheet" href="build/output.css"> </head>
<body>
<div class="container mx-auto mt-10 p-5 bg-gray-100 rounded shadow-lg">
<h1 class="text-4xl font-bold text-blue-600 text-center">
Hello World!
</h1>
<p class="text-center text-gray-700 mt-2">
Welcome to your Electron app with Tailwind CSS!
</p>
</div>
</body>
</html>
|