-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (94 loc) · 3.85 KB
/
index.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Jungle Chatbot | CodingNepal</title>
<link rel="stylesheet" href="./style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@48,400,1,0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css" />
<script type="text/javascript" src="/eel.js"></script>
</head>
<body>
<div class="jungle">
<div class="bushes"></div>
<div class="animals"></div>
<button class="chatbot-toggler">
<div class="monkey-container">
<img src="https://i.pinimg.com/564x/94/86/16/9486166e44e3023bf4fdbd40848f7255.jpg" alt="Monkey Icon" class="monkey-icon">
<div class="monkey-text"><h3 style="margin: 0;">AGENT M 🎓</h3></div>
</div>
</button>
<div class="chatbot">
<header>
<h2>AGENT M 🐒</h2>
<span class="close-btn material-symbols-outlined">close</span>
</header>
<ul class="chatbox">
<li class="chat incoming">
<img src="https://as1.ftcdn.net/v2/jpg/02/32/26/52/1000_F_232265208_Szg6294LtsWaSy1Rymfxd2LMPjat1fOJ.jpg" alt="Squirrel Icon" class="squirrel-icon">
<p>Hi there 👋<br>How can I help you today?</p>
</li>
</ul>
<div class="chat-input">
<textarea placeholder="Enter a message..." spellcheck="false" required></textarea>
<span id="send-btn" class="material-symbols-rounded">send</span>
</div>
</div>
</div>
<div class="container">
<div class="card">
<div class="first-content">
<img src="https://png.pngtree.com/thumb_back/fh260/background/20230518/pngtree-group-of-small-birds-sitting-on-a-fence-image_2528963.jpg" alt="Task" />
</div>
<div class="second-content">
<h1>COMMUNITY & TASKS</h1>
<h5>Completing Daily Challenges and Earn Coin🪙 by posting</h5>
</div>
</div>
<div class="card">
<div class="first-content">
<img src="https://t3.ftcdn.net/jpg/02/71/47/72/360_F_271477259_axmBODvBz3His4pRW9rHbh6gTdraOvAo.jpg" alt="Books" />
</div>
<div class="second-content">
<h1>E Books & Podcast</h1>
<h5>Read Books & listen Podcast</h5>
</div>
</div>
<div class="card">
<div class="first-content">
<img src="https://media.istockphoto.com/id/171210252/photo/florida-birds-in-flight-anna-maria-island.jpg?s=612x612&w=0&k=20&c=XJlcCYRAjDqYqtwS0akwzBoGePHGoPdDzygmRE-42-g=" alt="Dog" />
</div>
<div class="second-content">
<h1>Premium & Consultancy</h1>
<h5>You can easily Connect with 1:1 via Your special Guide</h5>
</div>
</div>
</div>
<div class="music-container" id="music-container">
<div class="music-info">
<h4 id="title">ukulele</h4>
<div class="progress-container" id="progress-container">
<div class="progress" id="progress"></div>
</div>
</div>
<audio src="music/Relationship Problem.mp3" id="audio"></audio>
<div class="img-container">
<img src="image/Relationship problem.jpg" alt="music-cover" id="cover" />
</div>
<div class="navigation">
<button id="prev" class="action-btn">
<i class="fas fa-backward"></i>
</button>
<button id="play" class="action-btn action-btn-big">
<i class="fas fa-play"></i>
</button>
<button id="next" class="action-btn">
<i class="fas fa-forward"></i>
</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>