Spot the Difference Game - Play Now & Test Your Observation Skills
<!DOCTYPE html>
<html>
<head>
<title>Spot the Difference Game - Play Now & Test Your Observation Skills</title>
<style>
#container {
width: 1000px;
margin: 0 auto;
}
img {
width: 600px;
float: left;
}
#differences {
width: 300px;
float: left;
}
#differences ul li {
list-style: none;
}
</style>
</head>
<body>
<div id="container">
<img src="original-image.jpg" />
<img src="altered-image.jpg" />
<div id="differences">
<ul>
<li>A Bird is missing</li>
<li>A cloud is in a different position</li>
<li>A tree is missing</li>
</ul>
</div>
</div>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/lnuy 著作权归作者所有。请勿转载和采集!