-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 986 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (26 loc) · 986 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MultiColor Window</title>
<link rel="icon" type="image/x-icon" href="./icon/icon.png">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="flex flex-col h-screen justify-center items-center font-bold">
<h1 id="name" class="text-2xl bold">MultiColor Window</h1>
<button
type="button"
class="text-white bg-gradient-to-r from-purple-500 via-purple-600 to-purple-700
hover:bg-gradient-to-br focus:ring-4 focus:outline-none focus:ring-purple-300
dark:focus:ring-purple-800 shadow-lg shadow-purple-500/50 dark:shadow-lg
dark:shadow-purple-800/80 font-medium rounded-lg text-sm px-5 py-2.5 text-center mt-6"
id="btn"
>
Click Me
</button>
</div>
<script src="script.js"></script>
</body>
</html>