-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaiscript.html
108 lines (100 loc) · 5.31 KB
/
aiscript.html
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pigeon Conversations</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
color: #333;
margin: 0;
padding: 20px;
}
h1 {
text-align: center;
color: #555;
}
.conversation {
background-color: #fff;
padding: 15px;
margin: 10px 0;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.pigeon {
font-weight: bold;
color: #555;
}
.translation {
font-style: italic;
color: #777;
}
.pigeon-coo {
color: #1e88e5;
}
</style>
</head>
<body>
<h1>Pigeon Conversations</h1>
<!-- Conversation 1 -->
<div class="conversation">
<p><span class="pigeon">Pigeon 1:</span> <span class="pigeon-coo">Coohhh... coo-coo.</span></p>
<p class="translation">Translation: "Good morning, how are you?"</p>
<p><span class="pigeon">Pigeon 2:</span> <span class="pigeon-coo">Coohh, coo-coo-coo!</span></p>
<p class="translation">Translation: "I’m doing well, thank you! The sun feels nice."</p>
<p><span class="pigeon">Pigeon 3:</span> <span class="pigeon-coo">Cooh-cooh, coo-coo.</span></p>
<p class="translation">Translation: "The wind is gentle today. Perfect for flying!"</p>
<p><span class="pigeon">Pigeon 1:</span> <span class="pigeon-coo">Cooh-coo-coo?</span></p>
<p class="translation">Translation: "Shall we go for a flight?"</p>
<p><span class="pigeon">Pigeon 2:</span> <span class="pigeon-coo">Coohhh... coo.</span></p>
<p class="translation">Translation: "Not yet, let’s enjoy the calm for a while."</p>
</div>
<!-- Conversation 2 -->
<div class="conversation">
<p><span class="pigeon">Pigeon 1:</span> <span class="pigeon-coo">Coohh... coo-coo?</span></p>
<p class="translation">Translation: "Is it time to leave the rooftop?"</p>
<p><span class="pigeon">Pigeon 2:</span> <span class="pigeon-coo">Coohh, coo-coo-coo!</span></p>
<p class="translation">Translation: "Not yet, the humans are nearby. We should stay here."</p>
<p><span class="pigeon">Pigeon 3:</span> <span class="pigeon-coo">Cooh-cooh, cooh-cooh.</span></p>
<p class="translation">Translation: "I think they’re gone now. We can go."</p>
<p><span class="pigeon">Pigeon 1:</span> <span class="pigeon-coo">Coohhh...</span></p>
<p class="translation">Translation: "I’ll wait a bit longer."</p>
</div>
<!-- Conversation 3 -->
<div class="conversation">
<p><span class="pigeon">Pigeon 1:</span> <span class="pigeon-coo">Cooh-cooh-coo?</span></p>
<p class="translation">Translation: "Have you seen the others today?"</p>
<p><span class="pigeon">Pigeon 2:</span> <span class="pigeon-coo">Coohhh... coo-coo.</span></p>
<p class="translation">Translation: "Yes, they were flying around earlier. But they’ve gone."</p>
<p><span class="pigeon">Pigeon 3:</span> <span class="pigeon-coo">Cooh-coo-coo?</span></p>
<p class="translation">Translation: "Should we go look for them?"</p>
<p><span class="pigeon">Pigeon 1:</span> <span class="pigeon-coo">Coohhh...</span></p>
<p class="translation">Translation: "No need. We’ll wait here. They’ll return soon."</p>
</div>
<!-- Conversation 4 -->
<div class="conversation">
<p><span class="pigeon">Pigeon 1:</span> <span class="pigeon-coo">Cooh-coo-coo.</span></p>
<p class="translation">Translation: "The sky is so clear today."</p>
<p><span class="pigeon">Pigeon 2:</span> <span class="pigeon-coo">Coohh... coo.</span></p>
<p class="translation">Translation: "Yes, it’s perfect for a long flight."</p>
<p><span class="pigeon">Pigeon 3:</span> <span class="pigeon-coo">Cooh-cooh-coo!</span></p>
<p class="translation">Translation: "Let’s explore the park! It’s always full of food."</p>
<p><span class="pigeon">Pigeon 1:</span> <span class="pigeon-coo">Coohhh...</span></p>
<p class="translation">Translation: "I prefer to stay here for now."</p>
</div>
<!-- Conversation 5 -->
<div class="conversation">
<p><span class="pigeon">Pigeon 1:</span> <span class="pigeon-coo">Cooh-cooh?</span></p>
<p class="translation">Translation: "What’s that noise below us?"</p>
<p><span class="pigeon">Pigeon 2:</span> <span class="pigeon-coo">Coohh... coo-coo.</span></p>
<p class="translation">Translation: "I think it's a dog barking."</p>
<p><span class="pigeon">Pigeon 3:</span> <span class="pigeon-coo">Cooh-coo-coo!</span></p>
<p class="translation">Translation: "We should stay up here, away from it."</p>
<p><span class="pigeon">Pigeon 1:</span> <span class="pigeon-coo">Coohhh...</span></p>
<p class="translation">Translation: "I’ll keep an eye on it."</p>
</div>
<!-- Additional Conversations go here -->
</body>
</html>