Skip to content

Commit

Permalink
Create call.html
Browse files Browse the repository at this point in the history
  • Loading branch information
accio3014 authored Sep 1, 2023
1 parent abbadb1 commit 1439230
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions call.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Initiating Call...</title>
<script>
setTimeout(function(){
window.location.href = 'tel:1234567890';
}, 10000); // 10 seconds delay
</script>
</head>
<body>
Initiating a call in 10 seconds...
</body>
</html>

0 comments on commit 1439230

Please sign in to comment.