-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresult0.html
More file actions
180 lines (174 loc) · 5.02 KB
/
Copy pathresult0.html
File metadata and controls
180 lines (174 loc) · 5.02 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Result Page</title>
<style>
@font-face {
font-family:myFont;
src: url(Later.ttf);
}
body {
margin: 0;
padding: 0;
background: #274237;
font-family: 'Arial', sans-serif;
color: #fafbfc;
text-align: center;
line-height: 1.6;
}
h1, h2, h3 {
color: #ffffff;
margin-bottom: 20px;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.h{
font-family:myFont;
background-color:black ;
text-shadow:
0 0 10px rgb(255, 0, 0),
0 0 20px rgb(255, 0, 0),
0 0 30px rgb(255, 0, 0),
0 0 40px rgb(255,0, 0);
transition: transform 0.3s ease, text-shadow 0.7s ease;
}
.h:hover{
transform: translateY(-5px);
text-shadow:
0 0 15px rgb(0, 47, 255),
0 0 25px rgb(0, 42, 255),
0 0 35px rgb(43, 0, 255),
0 0 45px rgb(0, 38, 255),
0 0 55px rgb(0, 38, 255)
}
table {
width: 80%;
margin: 20px auto;
border-collapse: collapse;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
background: #fff;
}
th, td {
padding: 15px;
border-bottom: 1px solid #dee2e6;
}
.q{
font-size: 20px;
font-weight: bolder;
color: #000000;
background-color: #038151;
}
.qq{
font-size: 25px;
font-weight: bolder;
}
th {
background-color: #9fcf92;
color: #000000;
}
tr{
background-color: #053e28;
}
.contact-details {
margin-top: 30px;
background: #343a40;
padding: 15px;
color: #fff;
border-radius: 10px;
}
.contact-details h3 {
color: #007bff;
margin-bottom: 10px;
}
footer {
background: #494d51;
color: #fff;
padding: 8px;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<h1 class="h"><b>RESULT PAGE</b></h1>
<h1 class="h1"><b><u> PERSONAL INFORMATION </span></u></b></h1>
<table>
<tr>
<th class="qq">Attribute</th>
<th class="qq">Value</th>
</tr>
<tr>
<td class="q">Name</td>
<td>{{ name }}</td>
</tr>
<tr>
<td class="q">Email</td>
<td>{{ email }}</td>
</tr>
<tr>
<td class="q">Age</td>
<td>{{ age }}</td>
</tr>
<tr>
<td class="q">Height</td>
<td>{{ height }}</td>
</tr>
<tr>
<td class="q">Weight</td>
<td>{{ weight }}</td>
</tr>
<tr>
<td class="q">Gender</td>
<td>{{ gender }}</td>
</tr>
<tr>
<td class="q">Nutrition Required</td>
<td>{{ detail }}</td>
</tr>
<tr>
</table>
<h2><b><u>DIET PLANS</u></b></h2>
<table>
<tr>
<th class="qq">Time of Day</th>
<th class="qq">Diet Plan</th>
</tr>
<tr>
<td class="q">Morning (veg)</td>
<td>{{ morning_veg_diet }}</td>
</tr>
<tr>
<td class="q">Morning (Non-Veg)</td>
<td>{{ morning_nonveg_diet }}</td>
</tr>
<tr>
<td class="q">Afternoon (veg)</td>
<td>{{ afternoon_veg_diet }}</td>
</tr>
<tr>
<td class="q">Afternoon (Non-Veg)</td>
<td>{{ afternoon_nonveg_diet }}</td>
</tr>
<tr>
<td class="q">Night (veg)</td>
<td>{{ night_veg_diet }}</td>
</tr>
<tr>
<td class="q">Night (Non-Veg)</td>
<td>{{ night_nonveg_diet }}</td>
</tr>
</table>
<div class="contact-details">
<h3>CONTACT DETAILS</h3>
<p><b><u>Email</u>:</b> info@example.com</p>
<p><b><u>Phone</u>:</b> +1 123-456-7890</p>
<p><b><u>Address</u>:</b> 123 Nutrition Street, Cityville</p><br>
</div>
<footer>
© 2024 Result Page. All rights reserved.
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html>