-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path9.html
More file actions
35 lines (30 loc) · 866 Bytes
/
Copy path9.html
File metadata and controls
35 lines (30 loc) · 866 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="jquery-3.2.1.min.js" type="text/javascript"></script>
</head>
<body>
<script>
var doShma=function() {
alert ("Shma, Israel....");
};
var timeoutId = setTimeout(doShma,6000);
var intUpt = prompt("Break it?","yes");
if (intUpt == "yes") {
clearTimeout(timeoutId);
alert("kvar");
} else {alert("daka!");
};
</script>
</body>
</html>
<form class="form">
<h3>REQUEST A QUOTE</h3> <br>
<input type="email" name="email" placeholder="Email Adress"><br>
<input type="phone" name="phone" placeholder="Phone number"><br>
<input type="text" name="country" placeholder="Country"><br>
<input type="checkbox" name="Accept" placeholder="Accept"> I accept the terms and conditions <br>
<input class="submit" type="submit" value="SEND">
</form>