File size: 1,139 Bytes
273f76c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<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>