-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |