-
Notifications
You must be signed in to change notification settings - Fork 420
Expand file tree
/
Copy pathreportthree.html
More file actions
74 lines (67 loc) · 2.01 KB
/
Copy pathreportthree.html
File metadata and controls
74 lines (67 loc) · 2.01 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>College Scorecard Reports</title>
<link href="css/main.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="nav-wrap">
<div class="navbar">
<a href="index.html">
<span class="nav-item">College Scorecard Reports</span>
</a>
<a href="reportone.html">
<span class="nav-item">Report 1</span>
</a>
<a href="reporttwo.html">
<span class="nav-item">Report 2</span>
</a>
<a href="reportthree.html">
<span class="nav-item">Report 3</span>
</a>
</div>
</div>
<div class="content-wrap">
<div class="container">
<h1>Report Three</h1>
<br>
<table>
<thead>
<tr>
<th>#</th>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>USF</td>
<td>Tampa, FL</td>
<td>$00,000</td>
</tr>
<tr>
<td>2</td>
<td>UF</td>
<td>Somewhere, FL</td>
<td>$00,001</td>
</tr>
<tr>
<td>3</td>
<td>FSU</td>
<td>IDK, FL</td>
<td>$00,002</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="footer-wrap">
<div class="footer">
<span class="footer-item">Developed for Assignment 3 - Distributed Information Systems</span>
</div>
</div>
</body>
</html>