Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions Prem
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Will You Be Mine?</title>
<style>
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #fbe7c6;
font-family: Arial, sans-serif;
color: #333;
}
h1 {
font-size: 3rem;
margin-bottom: 20px;
}
p {
font-size: 1.5rem;
margin-bottom: 40px;
}
button {
padding: 15px 30px;
font-size: 1.2rem;
border: none;
border-radius: 10px;
background-color: #ff6f61;
color: white;
cursor: pointer;
transition: 0.3s;
}
button:hover {
background-color: #ff3b2f;
}
</style>
</head>
<body>
<h1>Will You Be My Valentine?</h1>
<p>You make my world brighter every day. I’d love to make you smile forever!</p>
<button onclick="alert('Yay! You said YES! ❤️')">Yes, I will!</button>
<button onclick="alert('Oh no! But I will always cherish you! 💔')">Sorry, not now!</button>
</body>
</html>