-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.html
30 lines (29 loc) · 1.21 KB
/
help.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
<!DOCTYPE html>
<html>
<head>
<title>ICHBAV - head</title>
<link rel="stylesheet" href="styles.css">
<script>
function copyLink() {
var copyText = document.getElementById("siteLink");
copyText.select();
copyText.setSelectionRange(0, 99999); // Pour mobile
document.execCommand("copy");
alert("Lien copié : " + copyText.value);
}
</script>
</head>
<body>
<center><h1 class="glitch">help me spread this warning online</h1></center>
<br>
<p>it's very simple: to make as many people as possible aware of malicious sites, try to put the link to this site in as many places as possible:</p>
<p>hyperlink on social networks, send it to your friends to see their reaction, etc.</p>
<p>thank you</p>
<br>
<p>copy the website link :</p>
<button onclick="copyLink()">copy the link</button>
<input type="text" value="https://miiforlong.github.io/ICHBAV/" id="siteLink" readonly>
<br><br>
<a href="index.html"><button>get back to the main page</button></a>
</body>
</html>