-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathReport.php
64 lines (56 loc) · 1.42 KB
/
Report.php
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
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {font-family: Arial, Helvetica, sans-serif;
width:40%;
margin:auto;
margin-top:5%;}
* {box-sizing: border-box;}
.options{
margin-left:20px;
}
input[type=submit]:hover {
background-color: #45a049;
}
#form-img{
max-width:20%;
margin:2%;
}
#form-head{
display:flex;
justify-content:flex-start;
align-items:center;
}
.container {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
clear: both;
}
.container input{
width: 100%;
clear: both;
}
</style>
</head>
<body>
<div id="form-head">
<img src="./assets/icon1.png" id="form-img"></img>
<h2 style="text-align: center; font-size:40px; color:#ff3256; margin:2%;">Your Physical Health Report</h2>
</div>
<div class="container">
<div>
<label><b>Name:</b> </label><br><br>
<label><b>Age:</b> 20</label><br><br>
<label><b>Sex:</b> Female</label><br><br>
<label><b>Apetite:</b> Normal</label><br><br>
<label><b>Tiredness:</b> Most of the time</label><br><br>
<label><b>Sleep Schedule:</b> Increase in sleeping hours</label><br><br>
<label><b>Weight Change:</b> Weight gain</label><br><br>
<label><b>Mood Swings:</b> Some of the time</label><br><br>
<label><b>Irregularity in menses:</b> Yes</label><br><br>
<label><b>Blod flow during menstruation:</b> Normal</label><br><br>
</div>
</div>
</body>
</html>