Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add files via upload #16

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open

Add files via upload #16

wants to merge 4 commits into from

Conversation

Psindhu28
Copy link

source code

<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;

// Constructors
public HealthData(int id, String name, int heartRate, String bloodPressure) {
    this.id = id;
    this.name = name;
    this.heartRate = heartRate;
    this.bloodPressure = bloodPressure;
}

// Getters and Setters
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;
}

}

@subhadeepsonu
Copy link
Contributor

add your source code, not some document file.

@subhadeepsonu
Copy link
Contributor

make the changes and tag me i will merge

@Psindhu28
Copy link
Author

@subhadeepsonu
source code -09(hotshots )

<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;

// Constructors
public HealthData(int id, String name, int heartRate, String bloodPressure) {
    this.id = id;
    this.name = name;
    this.heartRate = heartRate;
    this.bloodPressure = bloodPressure;
}

// Getters and Setters
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;
}

}

@subhadeepsonu
Copy link
Contributor

The folder is literally empty please check

@Psindhu28
Copy link
Author

@subhadeepsonu
can you check if you recieved the code?

@Psindhu28
Copy link
Author

Psindhu28 commented Oct 26, 2024 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants