-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnavbar.html
42 lines (37 loc) · 1.96 KB
/
navbar.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Icon Grid</title>
<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">
<!-- Style nostri -->
<link rel="stylesheet" href="styles/general.css">
<link rel="stylesheet" href="styles/navbar.css">
</head>
<body>
<nav class="navbar sticky-navbar gradient-background mt-5">
<div class="icon-grid row w-100 mx-0">
<div
class="icon-column col-3 col-sm-3 col-md-3 col-lg-3 col-xl-3 d-flex justify-content-center align-items-center">
<a href="dashboardAlimentazione.html"><img src="res/imgs/icons/pasta.png" class="icon-image" alt="Icon 1"></a>
</div>
<div
class="icon-column col-3 col-sm-3 col-md-3 col-lg-3 col-xl-3 d-flex justify-content-center align-items-center">
<a href="dashboardAttivitaFisica.html"><img src="res/imgs/icons/dumbbell.png" class="icon-image"
alt="Icon 2"></a>
</div>
<div
class="icon-column col-3 col-sm-3 col-md-3 col-lg-3 col-xl-3 d-flex justify-content-center align-items-center">
<a href="dashboardSonno.html"><img src="res/imgs/icons/sleep.png" class="icon-image" alt="Icon 3"></a>
</div>
<div
class="icon-column col-3 col-sm-3 col-md-3 col-lg-3 col-xl-3 d-flex justify-content-center align-items-center">
<a href="diario.html"><img src="res/imgs/icons/diario.png" class="icon-image" alt="Icon 4"></a>
</div>
</div>
</nav>
</body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</html>