-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (42 loc) · 1.54 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home (Nutrient Galaxy)</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet">
<script src="nutrient_galaxy.js" defer></script>
</head>
<body>
<!-- Animated Space Background -->
<div class="space-background"></div>
<!-- Milky Way Container -->
<div class="milky-way-container"></div>
<!-- Navigation Bar -->
<div class="navbar">
<a href="index.html">Home</a>
<a href="introduction.html">Introduction</a>
<a href="data_prep.html">Data Prep</a>
<a href="eda.html">EDA</a>
<a href="pca.html">PCA</a>
<a href="clustering.html">Clustering</a>
<a href="arm.html">ARM</a>
<a href="decision_trees.html">Decision Trees</a>
<a href="naive_bayes.html">Naive Bayes</a>
<a href="svm.html">SVM</a>
<a href="regression.html">Regression</a>
<a href="conclusions.html">Conclusions</a>
<a href="about_me.html">About Me</a>
</div>
<!-- Hero Section -->
<div class="content-section">
<h1>Welcome to the Ultimate Nutrient Galaxy</h1>
</div>
<!-- Nutrient Galaxy Section -->
<div id="nutrient-galaxy" class="galaxy-container"></div>
<div class="stars"></div>
<!-- Tooltip for Hover Information -->
<div id="tooltip" class="tooltip"></div>
</body>
</html>