-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.24 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Application</title>
<link rel="stylesheet" href="./style/style.css">
</head>
<body onload="startGame()">
<div class="demo">
<img class="iphone" src="./statics/—Pngtree—iphone x_3469729.png" alt="iphone">
<iframe class="application" width="300" height="770" src="https://xd.adobe.com/embed/c39d54be-ba4f-49c4-5abb-98be59b65591-b5ac/" frameborder="0" allowfullscreen></iframe>
</div>
<div class="rightpart">
<div class="entervalue">
<img width="210px" src="./statics/Logo1.png" alt="Logo">
<p class="exercise">Exercise</p>
<input id="exerciseinput" type="text" placeholder="Enter your exercise calorie">
<p class="diet">Diet</p>
<input id="dietinput" type="text" placeholder="Enter your food intake calorie">
</div>
<div class="interactivedemo">
<canvas id="c" width="500" height="300"></canvas>
</div>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="./script/script.js"></script>
</body>
</html>