Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
sufiprog authored Oct 31, 2024
1 parent 51ece6e commit d5b52c3
Showing 1 changed file with 64 additions and 3 deletions.
67 changes: 64 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,71 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Sufyancode</title>
<title>Coming Soon</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: #f3f4f6;
}

.container {
text-align: center;
background: white;
padding: 50px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
font-size: 3em;
margin-bottom: 20px;
color: #333;
}

p {
font-size: 1.2em;
margin-bottom: 30px;
color: #777;
}

input[type="email"] {
padding: 10px;
font-size: 1em;
border: 1px solid #ddd;
border-radius: 5px;
width: 70%;
margin-right: 10px;
}

button {
padding: 10px 20px;
font-size: 1em;
color: white;
background: #007bff;
border: none;
border-radius: 5px;
cursor: pointer;
}

button:hover {
background: #0056b3;
}
</style>
</head>
<body>
<h1>Welcome to Sufyancode</h1>
<p>This is a basic HTML page for your GitHub Pages site.</p>
<div class="container">
<h1>Coming Soon</h1>
<p>Our website is under construction. We'll be here soon with our new awesome site, subscribe to be notified.</p>
<form>
<input type="email" placeholder="Enter your email" required>
<button type="submit">Notify Me</button>
</form>
</div>
</body>
</html>

0 comments on commit d5b52c3

Please sign in to comment.