Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
14 views5 pages

Coding

Uploaded by

Harsh Agarwal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views5 pages

Coding

Uploaded by

Harsh Agarwal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 5

Coding 1

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yes or No</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: lightpink;
}

.container {
text-align: center;
}

h1 {
color: #333;
}

h2 {
color: #666;
}

img {
width: 200px;
height: auto;
margin-top: 20px;
}

.hidden {
display: none;
}
#yesButton, #noButton{
background: white;
padding:8px 16px;
border:none;
border-radius:5px;
}
</style>
</head>
<body>

<div class="container">
<h1>Do you love me?😊</h1>
<h2>Please say yes!</h2>
<button id="yesButton" >Yes</button>
<button id="noButton">No</button>
<img id="image"
src="https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExYmNzZTFsMWlmNWNqYjVuN2IxaTA0a
Gp3ZG13ZGc3MDh3aHdkMzFuZiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/
c76IJLufpNwSULPk77/giphy.gif" alt="Placeholder Image">
</div>

<script>
let clickCount = 0;

const yesButton = document.getElementById('yesButton');


const noButton = document.getElementById('noButton');
const heading = document.querySelector('h1');
const subheading = document.querySelector('h2');
const image = document.getElementById('image');

const imageUrls = [

'https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExOWZsMDB1dGI5N2djNjk4OHE4bDRudzd6Y
mIzZ3IyY2oxaGczZTZwbSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/gDfteqLchLcRTtjAD7/
giphy.gif',

'https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExMTltY3oxb2hxa3g1bmQ1cmthYm5lcnBpM
WM1ZWdpbXhtaWFobTRjOSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/M90mJvfWfd5mbUuULX/
giphy.gif',

'https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExNWg4Y3Frc3locThqN3Z0OTUzN2dyZHQxY
3F3Ym92bzFnN3RycHE5bSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/eiRpSPB8OSGVcbkOIJ/
giphy.gif',

'https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExMG54c3J1cXNybThtb2VycGpmbW5paHppc
DB0Z2Njd2xxMjN3MXJoMSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/3o6gDZ9unSrDk3EuR2/
giphy.gif',

'https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExZnVzZ3U1N2JodG1rMTU5dHVhOHYzM3lia
DF3eDR1eGJ1N3YweWgyYyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/9X8UlqKhaSPz4n7BkW/
giphy.gif',

];

noButton.addEventListener('click', () => {
clickCount++;
if (clickCount < 5) {
heading.textContent = "Soch lo acche se?";
subheading.textContent = `Click "yes".`;
image.src = imageUrls[clickCount ];
}
if (clickCount === 4) {
heading.textContent = "How about now?";
subheading.textContent = `Please click "Yes" now.`;
noButton.style.display = "none";
yesButton.style.display = "inline-block";

}
});

yesButton.addEventListener('click', () => {
heading.textContent = " Hehe I knew it!";
subheading.textContent = "I love you";
image.src =
"https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExNGM3MW92Zms4a3ZtamxibnZidHB1d3FoM
WVzdmE3bzhxZWppaWN2OCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/bA5cblwksWXDOwSzUI/
giphy.gif";
yesButton.disabled = true;
noButton.disabled = true;
yesButton.style.display = "none";
noButton.style.display = "none";
});
</script>

</body>
</html>

Coding 2

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yes or No</title>
<style>
/* Optional styling */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: lightpink;
flex-direction:column;
}
button {
padding: 10px 20px;
margin: 10px;
font-size: 16px;
cursor: pointer;
}
#heading {
font-size: 24px;
margin-top: 20px;
}
#image {
max-width: 150px;
height: auto;
margin-top: 20px;
}
#yesButton, #noButton{
background: white;
padding:8px 16px;
border:none;
border-radius:5px;
}

</style>
</head>
<body>
<h1 id="heading">Do you Love me?😊</h1>
<img id="image"
src="https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExNGJ0b2Ztdjh6MXNlMTVzZXZuaGd4b
G9vYnhyMXV3aDM0MWZ3OHRoNCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/
c76IJLufpNwSULPk77/giphy.gif" alt="Placeholder Image">
<div>
<button id="yesButton">Yes</button>
<button id="noButton" onmouseover="moveButton()">No</button> </div>

<!-- Optional JavaScript for button functionality -->


<script>
const yesButton = document.getElementById('yesButton');
const noButton = document.getElementById('noButton');
const heading = document.getElementById('heading');
const image = document.getElementById('image');

function moveButton() {
const newX = Math.floor(Math.random() * (window.innerWidth -
noButton.offsetWidth));
const newY = Math.floor(Math.random() * (window.innerHeight -
noButton.offsetHeight));
noButton.style.position = 'absolute';
noButton.style.left = newX + 'px';
noButton.style.top = newY + 'px';
}

yesButton.addEventListener('click', () => {
heading.textContent = "Hehe, I knew it!😊";
image.src =
"https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExZXE0aWZlaDM3bnlqamZma3drcGU1MzVzc
3FwMmt2c3E1bDQyYnA2dCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/bA5cblwksWXDOwSzUI/
giphy.gif";
yesButton.style.display = "none";
noButton.style.display = "none";// Change image source if desired
});

noButton.addEventListener('click', () => {
heading.textContent = "Sorry that you didn't like the image!";
image.src = "https://via.placeholder.com/150"; // Reset image source if
desired
});
</script>
</body>
</html>

You might also like