-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheart-rate-monitor.html
174 lines (147 loc) · 7.52 KB
/
heart-rate-monitor.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles/loading.css">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/form.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- Sub-loading spinner script for additional loading functionality -->
<script src="scripts/sub-loading.js"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Discover the professional portfolio and blog of Treshan Appuhamy. Explore articles on technology, programming, and personal projects.">
<title>Treshan Appuhamy's Work - Heart Rate Monitor</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
</head>
<body class="loading">
<div class="container">
<nav>
<!-- Logo or Branding -->
<a href="./">
<img src="images/logo.gif" class="logo" alt="Treshan Appuhamy" loading="eager">
</a>
<!-- Side Menu -->
<ul id="sidemenu">
<li><a href="./">Home</a></li>
<li><a href="./">About</a></li>
<li><a href="#contact">Contact</a></li>
<!-- Close Icon for Mobile Menu -->
<i class="fas fa-times" onclick="closemenu()"></i>
</ul>
<!-- Hamburger Menu Icon -->
<i class="fas fa-bars" onclick="openmenu()"></i>
</nav>
</div>
<div class="loading-page">
<!-- Loading Page Section -->
<div class="name-container">
<!-- Container for the name/logo -->
<div class="logo-name">TRESHAN</div>
<!-- Logo or name displayed -->
</div>
</div>
<div id="portfolio" style="margin-bottom: -80px">
<!-- Portfolio Section -->
<div class="container">
<!-- Container for content -->
<h1 class="sub-title">Heart Rate Monitor using PSoC</h1>
<!-- Project title -->
<p style="text-align: justify">
<!-- Project description -->
Developed a precise heart rate monitor utilizing the advanced capabilities of PSOC CY8C5888LTI-LP097 microcontroller.
Integrated with analog sensors, the system ensures accurate readings in real-time.
This project showcases the synergy of digital and analog electronics, offering a reliable solution for monitoring vital signs.
</p>
<img class="portfolio-image" style="max-width: 100%; display: block; margin: 0 auto; align-content: center"
src="images/work/hrm-2.jpg" loading="lazy" alt="Treshan Appuhamy">
<!-- Image of the project -->
<a href="https://youtu.be/wyVFzC3kzj8" class="btn">Demo Video</a>
<!-- Link to the demo video -->
</div>
</div>
<div class="share-buttons">
<!-- Container for social media share buttons -->
<div class="social-icons" style="margin-top: -20px">
<!-- Facebook Share Button -->
<a style="color: #080808; margin-bottom: 5px;" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Ftreshan.me/heart-rate-monitor.html" target="_blank" class="share-btn facebook">
<i class="fab fa-facebook"></i> Share on Facebook
</a>
<!-- Twitter Share Button -->
<a style="color: #080808; margin-bottom: 5px;" href="https://twitter.com/intent/tweet?url=https%3A%2F%2Ftreshan.me/heart-rate-monitor.html&text=Check%20out%20this%20website!" target="_blank" class="share-btn twitter">
<i class="fab fa-twitter"></i> Share on Twitter
</a>
<!-- LinkedIn Share Button -->
<a style="color: #080808; margin-bottom: 5px;" href="https://www.linkedin.com/shareArticle?url=https%3A%2F%2Ftreshan.me/heart-rate-monitor.html&title=Treshan's%20Portfolio" target="_blank" class="share-btn linkedin">
<i class="fab fa-linkedin"></i> Share on LinkedIn
</a>
</div>
</div>
<!-- Contact section -->
<div id="contact">
<div class="container">
<div class="row">
<!-- Left section with contact information -->
<div class="contact-left">
<h1 class="sub-title">Contact Me</h1>
<p><i class="fas fa-paper-plane"></i> treshanappuhamy@outlook.com</p>
<!-- Social media icons -->
<div class="social-icons">
<a class="linkedin" href="https://www.linkedin.com/in/treshanappuhamy"><i class="fab fa-linkedin"></i> </a>
<a class="github" href="https://www.github.com/treshanappuhamy"><i class="fab fa-github"></i> </a>
<a class="twitter" href="https://www.twitter.com/treshan_rajinda"><i class="fab fa-twitter-square"></i> </a>
</div>
<!-- Button to download CV -->
<a href="Treshan-CV.pdf" class="btn btn2">Download CV</a>
</div>
<!-- Right section with contact form -->
<div class="contact-right">
<form name="submit-to-google-sheet">
<input type="text" name="Name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="Message" rows="6" placeholder="Your Message"></textarea>
<!-- Combined container for message and sending indicator -->
<div class="msg-and-indicator" style="margin-bottom: 5px">
<!-- Span for displaying form submission messages -->
<span id="msg"></span>
<!-- Sending indicator -->
<div class="sending-indicator">
<div class="loader"></div>
<p>Sending...</p>
</div>
</div>
<div><button style="margin-top: -15px" type="submit" class="btn btn2">Submit</button></div>
</form>
</div>
</div>
</div>
</div>
<!-- Copyright information -->
<div class="copyright">
<p>© <span id="year"></span> Treshan Appuhamy - All rights reserved</p>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script
<div id="last-updated">
Loading...
</div>
</div>
<!-- GSAP (GreenSock Animation Platform) core library from CDN with integrity check for security (version 3.11.3) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.3/gsap.min.js"
integrity="sha512-gmwBmiTVER57N3jYS3LinA9eb8aHrJua5iQD7yqYCKa5x6Jjc7VDVaEA0je0Lu0bP9j7tEjV3+1qUm6loO99Kw=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- Main script for custom functionalities -->
<script src="scripts/script.js"></script>
<!-- Navbar script for handling navigation bar interactions -->
<script src="scripts/navbar.js"></script>
<!-- Form handling script for managing form interactions and validations -->
<script src="scripts/form.js"></script>
<!-- Custom cursor script for modifying the cursor behavior and appearance -->
<script src="scripts/cursor.js"></script>
<!-- GSAP (GreenSock Animation Platform) core library from CDN for animations (version 3.11.2) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.2/gsap.min.js"></script>
<!-- GSAP ScrollTrigger plugin from CDN for scroll-based animations (version 3.11.2) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.2/ScrollTrigger.min.js"></script>
<script src="scripts/last-updated.js"></script>
</body>
</html>