Play Spot the Difference Online - Free HTML Game
<!DOCTYPE html>
<html>
<head>
<title>Spot the Difference</title>
<style>
body {
padding: 0;
margin: 0;
}
#container {
width: 500px;
margin: 0px auto;
padding: 10px;
background-color: #eee;
}
#image1, #image2 {
width: 400px;
border: 1px solid #ccc;
}
#differences {
padding: 10px;
margin: 10px;
background-color: #ddd;
}
</style>
</head>
<body>
<div id="container">
<h1>Spot the Difference</h1>
<div>
<img id="image1" src="image1.jpg" />
<img id="image2" src="image2.jpg" />
</div>
<div id="differences">
<ul>
<li>The dog's collar is different</li>
<li>The flower in the background is missing</li>
<li>The ball is a different color</li>
</ul>
</div>
</div>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/lnuH 著作权归作者所有。请勿转载和采集!