-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (40 loc) · 3.82 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conversion d'adresse IP et calcul de sous-réseaux</title>
<style>
/* Ajoutez du CSS ici pour styliser votre formulaire si nécessaire */
</style>
<!-- Ou liez votre feuille de style css avec un fichier externe -->
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<pre>
███████╗██╗ ██╗██████╗ ███╗ ██╗███████╗████████╗ ██╗██████╗ ██████╗ █████╗ ██╗ ██████╗██╗ ██╗██╗ █████╗ ████████╗ ██████╗ ██████╗
██╔════╝██║ ██║██╔══██╗████╗ ██║██╔════╝╚══██╔══╝ ██║██╔══██╗ ██╔════╝██╔══██╗██║ ██╔════╝██║ ██║██║ ██╔══██╗╚══██╔══╝██╔═══██╗██╔══██╗
███████╗██║ ██║██████╔╝██╔██╗ ██║█████╗ ██║ ██║██████╔╝ ██║ ███████║██║ ██║ ██║ ██║██║ ███████║ ██║ ██║ ██║██████╔╝
╚════██║██║ ██║██╔══██╗██║╚██╗██║██╔══╝ ██║ ██║██╔═══╝ ██║ ██╔══██║██║ ██║ ██║ ██║██║ ██╔══██║ ██║ ██║ ██║██╔══██╗
███████║╚██████╔╝██████╔╝██║ ╚████║███████╗ ██║ ██║██║ ╚██████╗██║ ██║███████╗╚██████╗╚██████╔╝███████╗██║ ██║ ██║ ╚██████╔╝██║ ██║
╚══════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═══╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═════╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝
</pre>
<form id="subnetForm">
<label for="ipAddress">Adresse IP :</label>
<input type="text" id="ipAddress" name="ipAddress" required placeholder="x.x.x.x"><br><br>
<label for="subnetMaskDecimal">Masque de sous-réseau (en décimal):</label>
<input type="text" id="subnetMaskDecimal" name="subnetMaskDecimal" placeholder="x.x.x.x"><br><br>
<label for="subnetMaskCIDR">Masque de sous-réseau (en CIDR):</label>
<input type="text" id="subnetMaskCIDR" name="subnetMaskCIDR" placeholder="/x"><br><br>
<input id="btnSubmit" type="submit" value="Calculer">
</form>
<div id="result">
<!-- Les résultats seront affichés ici -->
</div>
<script>
// Le script JavaScript fourni va ici
</script>
<!-- Ou liez votre script js avec un fichier externe -->
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>