-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewReports.html
78 lines (72 loc) · 1.56 KB
/
viewReports.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<link rel = "stylesheet" href="Css/rebound.css">
</head>
<body>
<div>
<style>
button {
text-align: center;
border-radius: 50px;
background-color: #0039f4; /* Blue*/
border: none;
color: white;
padding: 15px 32px;
text-decoration: none;
display: block;
font-size: 15px;
margin: 5px 5px;
cursor: pointer;
}
button:hover {
background-color: #094276;
}
</style>
<button onclick="window.history.back()"><img src="AltImage/CMlogo.png" width="60" height="60"></button>
</div>
<style>
table {
background-color: #ffffff;
padding: auto;
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #000000;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: rgb(255, 255, 255);
}
h2{
color: #ffffff;
}
</style>
<h2> Review </h2>
<table>
<tr>
<th>Report Name</th>
<th>Department</th>
<th>Date</th>
</tr>
<tr>
<td>Community Benefit</td>
<td>[Your Department]</td>
<td>07/01/2024</td>
</tr>
<tr>
<td>Community Benefit</td>
<td>[Your Department]</td>
<td>07/02/2024</td>
</tr>
<tr>
<td>Community Benefit</td>
<td>[Your Department]</td>
<td>07/03/2024</td>
</tr>
</table>
</body>
</html>