-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 1.14 KB
/
index.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
31
32
33
34
35
36
37
38
39
40
41
42
43
<html>
<head>
<title>Home</title>
<meta name="description" content="HIGHLANDS SMP HOME PAGE">
<meta name="theme-color" content="#2ae6ff">
<link rel="stylesheet" type="text/css" href="CSSmain/style.css">
<link rel="icon" type="image/png" sizes="300x250" href="https://cdn.discordapp.com/attachments/865837241242484754/879700077759848478/download_1.png">
</head>
<body>
<div class="banner">
<div class="navbar">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="pages/rules.html">Rules</a></li>
<li><a href="pages/cre.html">Creators</a></li>
<li><a href="pages/event.html">Events</a></li>
<li><a href="pages/cont.html">Contact Us</a></li>
<li><a href="pages/abt.html">About Us</a></li>
</ul>
</div>
<div class="content">
<h1>HIGHLANDS SMP</h1>
<h2 onclick="copyIP('play.highlandssmp.in')">CLICK HERE TO COPY IP</h2>
</div>
</div>
<script>
function copyIP(ip) {
navigator.clipboard.writeText(ip);
var button = document.querySelector('h2');
button.textContent = 'Copied';
setTimeout(function() {
button.textContent = 'CLICK TO COPY IP';
}, 2000);
}
</script>
<hr>
</body>