-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (75 loc) · 4 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Practice IPv4 Subnetting with our free online tool. Learn how to subnet IPv4 addresses efficiently and accurately.">
<meta name="keywords" content="IPv4 Subnetting, Subnet Calculator, IP Address, Networking, Practice Subnetting">
<meta name="author" content="Tomas Hanak">
<title>IPv4 Subnetting Practice</title>
<meta name="canonical" href="https://subnet.tomashanak.xyz/">
<!-- Open Graph meta tags for social media sharing -->
<meta property="og:title" content="IPv4 Subnetting Practice">
<meta property="og:description" content="Practice IPv4 Subnetting with our free online tool. Learn how to subnet IPv4 addresses efficiently and accurately.">
<meta property="og:url" content="https://subnet.tomashanak.xyz/">
<meta property="og:image" content="ikona/ikona.png">
<!-- Twitter Card meta tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="IPv4 Subnetting Practice">
<meta name="twitter:description" content="Practice IPv4 Subnetting with our free online tool. Learn how to subnet IPv4 addresses efficiently and accurately.">
<meta name="twitter:image" content="ikona/ikona.png">
<link rel="icon" href="ikona/ikona.png" type="image/icon type">
<link rel="stylesheet" type="text/css" href="css/texty.css">
<link rel="stylesheet" type="text/css" href="css/tlacitka.css">
<link rel="stylesheet" type="text/css" href="css/tabulka.css">
<script src="scripty/zjisti.js"></script>
<script src="scripty/kontrola.js"></script>
<script src="scripty/nahoda.js"></script>
<script src="scripty/nacteniIP_a_hostu.js"></script>
<script src="scripty/vypocty.js"></script>
<script src="scripty/magic_osa.js"></script>
<title>
IPv4 Subnetting Practice
</title>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Y836QS28CY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Y836QS28CY');
</script>
</head>
<body onload="po_startu()">
<h1 class="hlavni_nadpis">
Main network (IPv4 Subnetting Practice)
</h1>
<p id="hlavni_ip" class="hlavni_ip">
0.0.0.0/24
</p>
<div class="nadpis_pro_vyber_hostu">
Number of hosts:
<input class = "pocet_hostu_css" type="number" id="pocet_hostu" name="pocet_hostu" min="1" max="10" value="5" onkeyup=hlavni_kontrola(this) onchange="uprava_pole_s_pocty_hostu(this)">
</div>
<div style="text-align: center;">
<button class="button" onclick="nova_ip()">New IP</button>
<button class="button" onclick="po_kliku_novi_hoste()">New hosts</button>
<button class="button" onclick="nova_ip_a_novi_hoste()">New IP and New Hosts</button>
</div>
<div class="row" id="tabulka_pro_hosty">
Error
</div>
<div id="tabulka_magic_osa">
</div>
<div class="row" id="tabulka_pro_kontrolu">
Error
</div>
<div style="text-align: center;">
<button class="button" onclick="zkontrolovat_vysledky()">Check</button>
<button class="button" onclick="ukazat_vysledky()">Show results</button>
<button class="button" id="tlacitko_magic_osa" onclick="ukaz_magic_osu()">Show magic axis</button>
</div>
<div class="zaverecny_text">
Created by <a href="https://github.com/Enigma036" target="_blank">Tomáš Hanák</a>
</div>
</body>
</html>