-
Notifications
You must be signed in to change notification settings - Fork 2
/
health.html
50 lines (34 loc) · 1.15 KB
/
health.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prakriti</title>
<link rel="stylesheet" href="css/stylesheet.css" />
<script src="javascript/main.js" defer></script>
<script src="https://kit.fontawesome.com/7c13eadab8.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
</head>
<body>
<nav>
<div class="logo"> <a href="index.html"> <img src="images/prakriti.png" height= "60"> </a> </div>
<div class="cat">
<ul class="nav-items">
<a href="index.html">Home</a>
<a href="weather.html">Weather</a>
<a href="blog.html">Blog</a>
<a href="health.html">Health</a>
<a href="consultation.html">Consultation</a>
</ul>
<span class="material-symbols-outlined theme-button">
light_mode
</span>
</div>
</nav>
<section class="unmain">
<h1>Health</h1>
<div class="unmain-container">
</div>
</section>
</body>
</html>