File size: 673 Bytes
9c5671b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3GPP Specification Visualizor</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<h1>Visualiseur de Spécifications 3GPP</h1>
<div class="file-input-container"> <input type="file" id="fileInput" accept=".json">
<div id="fileInfo"></div>
</div>
</div>
<div id="document-container">
<div class="loading">Veuillez charger un fichier de spécification 3GPP</div>
</div>
<script src="script.js"></script>
</body>
</html> |