8 lines
175 B
HTML
8 lines
175 B
HTML
<script>
|
|
function sendReq() {
|
|
fetch("https://api.countapi.xyz/hit/bergamot/visits", { method: "POST" })
|
|
}
|
|
</script>
|
|
|
|
<input type="button" onclick="sendReq()">
|