96 lines
2.0 KiB
HTML
96 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<link rel="stylesheet" href="../../Css/Ambiente_Usuario/Monitor.css">
|
|
<link rel="stylesheet" href="../../Css/padraouser.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<main class="Corpo">
|
|
|
|
<section class="Capitulos_1">
|
|
|
|
<a href="./SubTela_Alerta.html" target="iframe">
|
|
<div class="reação">
|
|
|
|
<p>Alerta</p>
|
|
|
|
</div>
|
|
</a>
|
|
|
|
<a href="./SubTela_Vpn.html" target="iframe">
|
|
<div class="reação">
|
|
|
|
<p>VPN</p>
|
|
|
|
</div>
|
|
</a>
|
|
|
|
<a href="./SubTela_DataCenter.html" target="iframe">
|
|
<div class="reação">
|
|
|
|
<p>Data Center</p>
|
|
|
|
</div>
|
|
</a>
|
|
|
|
<a href="./SubTela_Firewall.html" target="iframe">
|
|
<div class="reação">
|
|
|
|
<p>FireWall</p>
|
|
|
|
</div>
|
|
</a>
|
|
|
|
<a href="./SubTela_Ramais.html" target="iframe">
|
|
<div class="reação">
|
|
|
|
<p>Ramais</p>
|
|
|
|
</div>
|
|
</a>
|
|
|
|
<a href="./SubTela_CSTV.html" target="iframe">
|
|
<div class="reação">
|
|
|
|
<p>CFTV</p>
|
|
|
|
</div>
|
|
</a>
|
|
|
|
|
|
</section>
|
|
|
|
|
|
<script>
|
|
|
|
var temas = document.querySelectorAll('.reação')
|
|
|
|
function selectLink() {
|
|
temas.forEach((item) =>
|
|
item.classList.remove('ativo')
|
|
)
|
|
this.classList.add('ativo')
|
|
}
|
|
temas.forEach((item) =>
|
|
item.addEventListener('click', selectLink))
|
|
|
|
</script>
|
|
|
|
<section class="Capitulos_2">
|
|
<iframe src="./SubTela_Alerta.html" frameborder="0" name="iframe"></iframe>
|
|
</section>
|
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html> |