Skip to content

Psindhu28/hacktober_2024_code_submission

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

<title>Smart Health Monitoring System</title>

Smart Health Monitoring System

Health Tracker

Water Intake (in ml)
Exercise Duration (in min)
Blood Sugar Level (in mg/dL)
Submit
Date Water Intake (ml) Exercise Duration (min) Blood Sugar Level (mg/dL)
<script src="script.js"></script>

/* styles.css */ body { font-family: Arial, sans-serif; background-color: #f4f4f4; margin: 0; padding: 20px; }

.container { max-width: 800px; margin: 0 auto; background: white; padding: 20px; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }

h1 { text-align: center; }

table { width: 100%; border-collapse: collapse; }

th, td { padding: 10px; text-align: left; border-bottom: 1px solid #ddd; }

th { background-color: #f2f2f2; }

// src/main/java/com/example/healthmonitor/HealthData.java package com.example.healthmonitor;

public class HealthData { private int id; private String name; private int heartRate; private String bloodPressure;

public HealthData(int id, String name, int heartRate, String bloodPressure) { this.id = id; this.name = name; this.heartRate = heartRate; this.bloodPressure = bloodPressure; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getHeartRate() { return heartRate; } public void setHeartRate(int heartRate) { this.heartRate = heartRate; } public String getBloodPressure() { return bloodPressure; } public void setBloodPressure(String bloodPressure) { this.bloodPressure = bloodPressure; } }

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors