Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
mobarokOP authored Dec 25, 2024
1 parent 7bc4a9e commit 33e8224
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Our Site</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background: linear-gradient(135deg, #6a11cb, #2575fc);
color: #fff;
}

.container {
text-align: center;
max-width: 500px;
padding: 20px;
background: rgba(0, 0, 0, 0.3);
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

h1 {
font-size: 2.5rem;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 2px;
}

p {
font-size: 1rem;
margin-bottom: 30px;
line-height: 1.6;
}

.btn {
display: inline-block;
padding: 10px 20px;
font-size: 1rem;
text-decoration: none;
color: #fff;
background: #2575fc;
border-radius: 25px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
}

.btn:hover {
background: #6a11cb;
transform: translateY(-3px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Our Site</h1>
<p>
We're delighted to have you here! Explore our features, learn more about us,
and let us know how we can make your experience even better.
</p>
<a href="https://mobarokop.github.io" class="btn">Contact Me</a>
</div>
</body>
</html>

0 comments on commit 33e8224

Please sign in to comment.