<button id="yesBtn">YES π</button>
<button id="noBtn">NO π</button>
untitled-5938
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data β all from the browser, and deployed in milliseconds.
Viewing readonly version of main branch: v5View latest version
Be My Valentine π
body {
background-color: #ffe6ee;
font-family: Arial, sans-serif;
text-align: center;
height: 100vh;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
.container {
position: relative;
}
h1 {
color: #d6336c;
margin-bottom: 30px;
}
button {
padding: 12px 25px;
font-size: 18px;
border: none;
border-radius: 8px;
cursor: pointer;
margin: 10px;
}
#yesBtn {
background-color: #ff4d6d;
color: white;
}
#noBtn {
background-color: #adb5bd;
color: black;
position: absolute;
}
#loveContent {
display: none;
}
video {
width: 300px;
border-radius: 12px;
margin-top: 15px;
}