-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMatches.html
More file actions
44 lines (38 loc) · 1.12 KB
/
Matches.html
File metadata and controls
44 lines (38 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<title>Matches</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
=
<div class="hero">
<div class="info-box">
<h1 id="fancy">Your matches!</h1>
<p>Here are your top matches for <b>CS 1331</b> based off of your profile.</p>
<table class="class-table">
<tr>
<th>Student</th>
<th>Profile</th>
<th>Contact</th>
</tr>
<tr>
<td>Jane Doe</td>
<td><a class="edit-button" href="ViewProfile.html">View Profile</a> </td>
<td>jane.doe@gatech.edu</td>
</tr>
<tr>
<td>Ariana Grande</td>
<td><a class="edit-button" href="ViewProfile.html">View Profile</a> </td>
<td>ariana.grande@gatech.edu</td>
</tr>
<tr>
<td>Bob Ross</td>
<td><a class="edit-button" href="ViewProfile.html">View Profile</a> </td>
<td>bob.ross@gatech.edu</td>
</tr>
</table>
</div>
</div>
</body>
</html>