Update README.md
Browse files
README.md
CHANGED
|
@@ -98,14 +98,36 @@ library_name: adapter-transformers
|
|
| 98 |
</body>
|
| 99 |
</html>
|
| 100 |
---
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 109 |
|
| 110 |
# MIK-TSE Chatbot
|
| 111 |
A branded onboarding assistant for Ethiopian creators.
|
|
|
|
| 98 |
</body>
|
| 99 |
</html>
|
| 100 |
---
|
| 101 |
+
<!DOCTYPE html>
|
| 102 |
+
<html>
|
| 103 |
+
<head>
|
| 104 |
+
<title>Click Trigger Test</title>
|
| 105 |
+
<style>
|
| 106 |
+
#myButton {
|
| 107 |
+
padding: 10px 20px;
|
| 108 |
+
background-color: #4CAF50;
|
| 109 |
+
color: white;
|
| 110 |
+
border: none;
|
| 111 |
+
cursor: pointer;
|
| 112 |
+
font-size: 16px;
|
| 113 |
+
}
|
| 114 |
+
</style>
|
| 115 |
+
</head>
|
| 116 |
+
<body>
|
| 117 |
+
|
| 118 |
+
<button id="myButton">Click Me</button>
|
| 119 |
+
<p id="output"></p>
|
| 120 |
+
|
| 121 |
+
<script>
|
| 122 |
+
document.getElementById("myButton").addEventListener("click", function() {
|
| 123 |
+
document.getElementById("output").textContent = "✅ Button was clicked!";
|
| 124 |
+
console.log("Button click triggered");
|
| 125 |
+
});
|
| 126 |
+
</script>
|
| 127 |
+
|
| 128 |
+
</body>
|
| 129 |
+
</html>
|
| 130 |
+
|
| 131 |
|
| 132 |
# MIK-TSE Chatbot
|
| 133 |
A branded onboarding assistant for Ethiopian creators.
|