-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreparti.html
More file actions
63 lines (54 loc) · 2.64 KB
/
Copy pathreparti.html
File metadata and controls
63 lines (54 loc) · 2.64 KB
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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- X-UA per compatibilità di alcuni aspetti di internet explorer-->
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- autore del sito-->
<meta name="author" content="WEB2A">
<!--meta description-->
<meta name="description" content="School Workshop - prototype of a dashboard medical web application">
<!--meta keywords-->
<meta name="keywords" content="healthcare, dashboard, hospital, departments">
<!--favicon simbolino vicino al nome del sito nella barra in alto della scheda-->
<link rel="icon" href="inc/img/favicon.png" type="image/png" alt="i-care favicon">
<title>I-Care - Reparti</title>
<!-- font -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap" rel="stylesheet">
<!-- fontawesome -->
<link rel="stylesheet" href="inc/fontawesome/css/all.min.css">
<link rel="stylesheet" href="inc/css/style.css">
</head>
<body class="reparto">
<div class="dash-menu">
<div class="logo">
<a href="index.html" alt="logo i-care"><img src="inc/img/logo.png" alt="logo_icare"></a>
</div>
<div class="nav">
<nav>
<ul>
<li><a href="index.html" alt="Dashboard"><i class="far fa-clipboard"></i> Dashboard</a></li>
<li><a href="./sviluppo/aurora-alessandro-paziente/pazienti.html" alt="Pazienti"><i class="fas fa-user-injured"></i> Pazienti</a></li>
<li id="active"><a href="reparti.html" alt="Reparti"><i class="far fa-building"></i> Reparti</a></li>
<li><a href="./sviluppo/sara_lavi_giuse_sito/404.html" alt="Chat"><i class="far fa-comments"></i> Chat</a></li>
<li><a href="./sviluppo/giu-figliuolo/sass-workshop/index.html" alt="Impostazioni"><i class="fas fa-cog"></i> Impostazioni</a></li>
<li><a href="./sviluppo/pagina_supporto/index.html" alt="Supporto"><i class="far fa-question-circle"></i> Supporto</a></li>
</ul>
</nav>
</div>
</div>
<div class="reparti">
<div class="pediatria">
<h4><i class="fas fa-baby-carriage"></i> Pediatria neonatale</h4>
</div>
<div class="neurologia">
<h4><i class="fas fa-brain"></i> Neurologia</h4>
</div>
<div class="cardiologia">
<h4><i class="fas fa-heartbeat"></i> Cardiologia</h4>
</div>
</div>
</body>
</html>