forked from Turwash/AsanaAi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutus.html
97 lines (83 loc) · 3.1 KB
/
aboutus.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial;
font-size: 17px;
}
#myVideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
}
.content {
position: fixed;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
color: #f1f1f1;
width: 100%;
padding: 20px;
}
.buttons {
position: fixed;
right: 10px;
bottom: 50px; /* Adjust this value as needed */
}
.button {
width: 200px;
font-size: 18px;
padding: 10px;
border: none;
background: #000;
color: #fff;
cursor: pointer;
margin-bottom: 10px;
}
.button:hover {
background: #ddd;
color: black;
}
</style>
</head>
<body>
<video autoplay muted loop id="myVideo">
<source src="assets/videoplayback.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<div class="content">
<h1>About AsanaAi</h1>
<p>In today's fast-paced world, maintaining a healthy lifestyle can often feel like a daunting task. AsanaAi, a groundbreaking web-based application, aims to simplify and enhance the journey towards physical and mental well-being through the power of artificial intelligence (AI) and machine learning (ML). AsanaAi is not just another fitness app; it's a comprehensive tool designed to cater to various aspects of holistic health, ranging from yoga practice to cardiovascular workouts, and even mental well-being.</p>
<p>It's a holistic wellness companion that harnesses the latest advancements in AI and ML to revolutionize the way we approach health and fitness. The combination of Web based Application which includes the User interactive and easy to handle interface and Integrated Machine Learning modules acts as a proper Fitness Trainer. Whether you're looking to strengthen your body, calm your mind, or simply live a more balanced life, AsanaAi is here to support you every step of the way. AsanaAi stands at the forefront of the intersection between technology and wellness, ushering in a new era of personalized fitness and mindfulness solutions.
<br><br>AsanaAi empowers individuals to take control of their health journey with confidence and ease. Whether you're seeking guidance in perfecting your yoga poses, tracking your cardio progress, or nurturing your mental well-being, AsanaAi offers a comprehensive suite of tools and features tailored to meet your unique needs. AsanaAi is poised to redefine the way we approach fitness and mindfulness in the digital age. Welcome to the future of wellness
<br>– welcome to AsanaAi.</p>
<button id="myBtn" class="button" onclick="togglePlayPause()">Pause</button>
</div>
<div class="buttons">
<button class="button" onclick="goToHomePage()">Home</button>
</div>
<script>
var video = document.getElementById("myVideo");
var btn = document.getElementById("myBtn");
function togglePlayPause() {
if (video.paused) {
video.play();
btn.innerHTML = "Pause";
} else {
video.pause();
btn.innerHTML = "Play";
}
}
function goToHomePage() {
window.location.href = "home.html";
}
</script>
</body>
</html>