Skip to content

Commit

Permalink
Create support.html
Browse files Browse the repository at this point in the history
  • Loading branch information
AlfredAR8 authored Aug 26, 2024
1 parent d8431f6 commit 3326172
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions EchoInsight/support.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f4f4f4;
}
.container {
text-align: center;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 2.5rem;
margin-bottom: 20px;
color: #333;
}
p {
font-size: 1.2rem;
color: #555;
}
</style>
</head>
<body>
<div class="container">
<h1>Support</h1>
<p>Coming Soon</p>
</div>
</body>
</html>

0 comments on commit 3326172

Please sign in to comment.