-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathheader.html
54 lines (45 loc) · 2.14 KB
/
header.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
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Karantina:wght@400&display=swap">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!-- Stili nostri -->
<link rel="stylesheet" href="styles/general.css">
<link rel="stylesheet" href="styles/header.css">
<!-- Scripts nostri -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="scripts/userSession.js"></script>
<script src="scripts/caricaJSON.js"></script>
</head>
<body>
<!-- INIZIO HEADER PER DESKTOP -->
<header class="header d-none d-md-flex justify-content-between align-items-center mb-5">
<a href="dashboardUtente.html" class="d-flex align-items-center text-decoration-none">
<div class="logo-container d-flex align-items-center">
<img loading="lazy" src="res/imgs/logo/LIFElogo.png" class="logo-image" alt="L.I.F.E. logo" />
<h1 class="logo-text mb-0">L.I.F.E.</h1>
</div>
</a>
<div class="user-info mx-4">
<a href="infoUtente.html"><i class="bi bi-person-circle fs-1 userInfoLogo"></i></a>
</div>
</header>
<!-- FINE HEADER PER DESKTOP -->
<!-- INIZIO HEADER PER MOBILE -->
<header class="headerMobile d-flex d-md-none justify-content-between align-items-center mb-5 mt-5">
<a href="dashboardUtente.html" class="d-flex align-items-center text-decoration-none">
<div class="logo-container d-flex align-items-center pe-4">
<img loading="lazy" src="res/imgs/logo/LIFElogo.png" class="logo-image" alt="L.I.F.E. logo" />
<h1 class="logo-text mb-0">L.I.F.E.</h1>
</div>
</a>
<div class="user-info mx-4">
<a href="infoUtente.html"><i class="bi bi-person-circle userInfoLogo fw-bold"></i></a>
</div>
</header>
<!-- FINE HEADER PER MOBILE -->
</body>
</html>