-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
46 lines (41 loc) · 1.43 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./src/assets/fitness1.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FitFlex</title>
<style>
/* CSS for footer-icons */
.footer-icons {
display: flex; /* Aligns the items horizontally */
justify-content: space-between; /* Distributes the items evenly with space between them */
align-items: center; /* Vertically aligns the items to the center */
padding: 10px 10px; /* Optional: Add some padding for spacing */
background-color: #222; /* Optional: Set a background color */
color: white; /* Text color */
}
/* Optional: Styling for individual icons or links */
.footer-icons a {
color: white;
text-decoration: none;
font-size: 18px;
}
.footer-icons a:hover {
color: #FBC638; /* Change color on hover */
}
</style>
</head>
<body>
<div id="root"></div>
<!-- Footer Section -->
<footer>
<div class="footer-icons">
<a href="https://github.com" target="_blank">GitHub</a>
<a href="https://www.linkedin.com" target="_blank">LinkedIn</a>
<a href="https://twitter.com" target="_blank">Twitter</a>
</div>
</footer>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>