-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (25 loc) · 988 Bytes
/
index.html
File metadata and controls
32 lines (25 loc) · 988 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
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guest List Management App</title>
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="./output.css">
</head>
<body>
<div class="container mx-auto p-4 h-screen">
<h1 class="block text-[27px] font-extrabold">Guest List Management App</h1>
<div class="flex space-x-1.5 h-[85%]">
<div id="input-section" class="w-2/5 h-4/5 p-4 bg-blue-100">
<input type="text" id="guestName" class="bg-white">
<span id="NameErrorMsg"> </span>
<button id="addGuest" class="btn btn-blue">Add Guest</button>
</div>
<div id="output-section" class="w-3/5 h-4/5 p-4 bg-yellow-100">
</div>
</div>
</div>
</body>
<script src="./index.js" type="module"></script>
</html>