-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnect.html
56 lines (34 loc) · 1.48 KB
/
connect.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel="icon" type="image/x-icon" href="Favicon.png">
<link rel="stylesheet" href="contact.css">
</head>
<body>
<div class="calculator">
<br><!-- <h5 id="score" style="text-align: end;"><a href="score.html">Your Score</a></h5> -->
<h1 style="color: #60712F;">Contact Us</h1>
<!-- <label for="activity">Activity:</label> -->
<!-- <select id="activity" name="activity"> -->
<!-- <option value="cycling" selected>Cycling</option> -->
</select>
<br/>
<label for="duration" style="color: #60712F;">Name: </label>
<input type="text" id="duration" name="duration" min="1" required>
<br/>
<label for="weight" style="color: #60712F;">E-mail:</label>
<input type="text" id="weight" name="weight" min="1" required>
<br/>
<label for="weight" style="color: #60712F;">Phone No:</label>
<input type="text" id="weight" name="weight" min="1" required>
<br/>
<button type="button" id="calculateBtn">Submit</button>
<!-- <hr/> -->
<!-- <h4 id="result">Calories Burned: </h4> -->
</div>
<script src="contact.js"></script>
</body>
</html>