<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Like to Access Content</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 50px;
}
#content {
display: none;
margin-top: 20px;
padding: 20px;
border: 1px solid #ddd;
background-color: #f9f9f9;
}
button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
</style>
</head>
<body>
<h2>Click "Like" to Access the Content</h2>
<button...