Created
March 1, 2024 09:27
-
-
Save deepanshumehtaa/e131a6119ea133db654e478ffafeb9b5 to your computer and use it in GitHub Desktop.
Testing
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Welcome Page</title> | |
<style> | |
body { | |
background-color: #f0f0f0; | |
font-family: Arial, sans-serif; | |
margin: 0; | |
padding: 0; | |
} | |
.container { | |
text-align: center; | |
margin-top: 100px; | |
} | |
h1 { | |
font-size: 3em; | |
color: #2ecc71; | |
text-shadow: 2px 2px 4px #3498db; | |
} | |
p { | |
font-size: 1.5em; | |
color: #e74c3c; | |
} | |
.button { | |
display: inline-block; | |
background-color: #3498db; | |
color: #ffffff; | |
padding: 10px 20px; | |
text-decoration: none; | |
font-size: 1.2em; | |
border-radius: 5px; | |
margin-top: 20px; | |
transition: background-color 0.3s ease; | |
} | |
.button:hover { | |
background-color: #2980b9; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>Welcome to Bro Zone !</h1> | |
<p>This page is designed just for you!</p> | |
<a href="https://github.com/deepanshumehtaa" class="button">Get Started</a> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment