Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Fancy Text Container</title> | |
<style> | |
body { | |
font-family: 'Arial', sans-serif; | |
background-color: #f4f4f4; | |
} | |
.text-container { | |
width: 80%; | |
max-width: 500px; | |
background: linear-gradient(to right, #f3f3f3, #e7e7e7); | |
border-radius: 15px; | |
margin: 0px auto; | |
padding: 20px; | |
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1); | |
text-align: center; | |
} | |
.fancy-text { | |
font-size: 20px; | |
font-weight: bold; | |
color: #333; | |
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1); | |
line-height: 1.5; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="text-container"> | |
<p class="fancy-text">就在找到「真理代碼」之際,AI 狐狸貓機器人發起對「光束守護者」的攻擊,迫使他們做出是否自我犧牲以完成任務的選擇。</p> | |
</div> | |
</body> | |
</html> | |