Clean code - index.html
This commit is contained in:
parent
694ebfd789
commit
47ff673014
78
index.html
78
index.html
|
@ -1,9 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
|
||||
<!-- Animazione pulsanti -->
|
||||
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
|
||||
<!-- File css -->
|
||||
|
||||
<link rel="stylesheet" href="https://1elci.it/style.css" type="text/css" media="all" />
|
||||
<meta name="viewport" content="width=device-width" >
|
||||
|
||||
<!-- Per rendere la pagina responsive -->
|
||||
|
||||
<meta name="viewport" content="width=device-width" >
|
||||
|
||||
<!-- Icona nella barra del browser / Favicon -->
|
||||
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="https://1elci.it/Favicon/apple-icon-57x57.png">
|
||||
<link rel="apple-touch-icon" sizes="60x60" href="https://1elci.it/Favicon/apple-icon-60x60.png">
|
||||
|
@ -24,29 +35,46 @@
|
|||
<meta name="theme-color" content="#ffffff">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<title>1 Elci - Homepage</title>
|
||||
<div align='center'><h1>1 Elci</h1></div>
|
||||
<div align='center' style='padding:4px;'>
|
||||
<link rel="icon" href="https://1elci.it/orario.png">
|
||||
<span style="padding:4px; width:150px"><a href='https://1elci.it'>HOME</a></span>
|
||||
<span style="border:2px; padding:4px; width:150px"><a href='https://1elci.it/orario/orario.html'>ORARIO</a></span>
|
||||
<span style="padding:4px; width:150px"><a href='https://1elci.it/calendario/calendario.html'>CALENDARIO</a></span>
|
||||
</div>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<header>
|
||||
|
||||
<div class="container">
|
||||
<input class="container_toggle" type="checkbox" id="switch" name="mode">
|
||||
<label for="switch">Toggle</label>
|
||||
</div>
|
||||
<script src="https://1elci.it/function.js"></script>
|
||||
<!-- Titolo nella barra del browser -->
|
||||
|
||||
<title>1 Elci - Homepage</title>
|
||||
|
||||
<!-- Titolo centrale del sito -->
|
||||
|
||||
<div align='center'><h1>1 Elci</h1></div>
|
||||
<div align='center' style='padding:4px;'>
|
||||
|
||||
<!-- Immagine orario classe -->
|
||||
|
||||
<link rel="icon" href="https://1elci.it/orario.png">
|
||||
<span style="padding:4px; width:150px"><a href='https://1elci.it'>HOME</a></span>
|
||||
<span style="border:2px; padding:4px; width:150px"><a href='https://1elci.it/orario/orario.html'>ORARIO</a></span>
|
||||
<span style="padding:4px; width:150px"><a href='https://1elci.it/calendario/calendario.html'>CALENDARIO</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Numerosi spazi -->
|
||||
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
<!-- Pulsante per switchare alla dark mode o light mode -->
|
||||
|
||||
<div class="container">
|
||||
<input class="container_toggle" type="checkbox" id="switch" name="mode">
|
||||
<label for="switch">Toggle</label>
|
||||
|
||||
<!-- Script per far funzionare l'animazione e per far funzionare lo switch light e dark -->
|
||||
|
||||
<script src="/function.js"></script>
|
||||
</body>
|
Loading…
Reference in New Issue