-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 1.13 KB
/
Copy pathindex.html
File metadata and controls
24 lines (23 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JSON-To-Interface</title>
<link preconnect rel="stylesheet" href="./src/style.css">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<script defer type="module" src="./src/main.ts"></script>
</head>
<body>
<main class="w-screen h-screen flex flex-col justify-center items-center bg-[#0E0D11]">
<h2 class="text-white mt-4 text-4xl font-bold text-center">JSON To <span class="bg-[#7359F8] px-4 py-2 rounded-lg text-white">Interface</span></h2>
<section class="w-screen my-4 h-[80%] flex max-sm:flex-col lg:flex-row max-sm:gap-5 justify-center lg:space-x-4 px-4">
<div class="lg:w-1/2 lg:h-full max-sm:w-full max-sm:h-1/2" id="json"></div>
<div class="lg:w-1/2 lg:h-full max-sm:w-full max-sm:h-1/2" id="interface"></div>
</section>
<button id="submit"
class="h-auto px-2 py-4 text-2xl rounded-lg bg-[#7359F8] text-white font-bold border-4 border-[#7359F8] active:text-[#7359F8] active:bg-[#0E0D11]">convert
it</button>
</main>
</body>
</html>