-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (18 loc) · 943 Bytes
/
index.html
File metadata and controls
20 lines (18 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>InvoicePro - Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
<link href="style.css" rel="stylesheet" />
</head>
<body class="bg-gradient d-flex justify-content-center align-items-center" style="min-height: 100vh; background: linear-gradient(to right, #e0f7fa, #e3f2fd);">
<div class="card text-center shadow-lg p-5" style="max-width: 500px;">
<h1 class="mb-3 text-primary fw-bold">🧾 InvoicePro</h1>
<p class="lead mb-4 text-muted">Generate and manage invoices beautifully in seconds.</p>
<a href="create.html" class="btn btn-success btn-lg w-100">🚀 Get Started</a>
</div>
</body>
</html>