-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViewProfile.html
More file actions
45 lines (43 loc) · 994 Bytes
/
ViewProfile.html
File metadata and controls
45 lines (43 loc) · 994 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>View Profile</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div class="left">
<li>
<A HREF ="Homepage.html"> Home</A>
</li>
<li>
<A HREF ="Dashboard.html"> Classes</A>
</li>
<li>
<A HREF ="Class.html"> PeerPods</A>
</li>
<li>
<A HREF ="StudentList.html"> Students</A>
</li>
<li>
<A HREF ="Matchmaking.html"> PeerPairing</A>
</li>
</div>
<div class="right">
<li>
<A HREF ="Info.html"> View Profile</A>
</li>
</div>
<br/>
<div class="hero">
<div class="info-box">
<div id="about">
<h1 id="fancy">Jane Doe</h1>
<p id = "subintro"><b>Bio:</b> Hi my name is Jane!</p>
<p><b>Major:</b> Biology</p>
<p><b>Interests:</b> Baking, biking, and hiking.</p>
<p><b>Classes:</b> CS 1331, CS 2050, PHYS 2211, and MATH 3670.</p>
</div>
</div>
</div>
</body>
</html>