-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClass.html
More file actions
113 lines (100 loc) · 3.23 KB
/
Class.html
File metadata and controls
113 lines (100 loc) · 3.23 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
<!DOCTYPE HTML>
<html>
<body id="top">
<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>
<A HREF ="Homepage.html"> Log Out</A>
</li>
</div>
<br/>
<div id="about">
<h1 id="fancy">CS 1331</h1>
<p>Check out some upcoming events for this class</p>
</div>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
</head>
<!-- Main -->
<div id="main">
<div class="inner">
<!-- Boxes -->
<div class="thumbnails">
<div class="box">
<div class="inner">
<h3>Review Polymorphism</h3>
<p>I was wondering if we could get a group of like 3 to review this cuz its hard.</p>
<a href="ViewEvent.html" class="button">View</a>
</div>
<br>
</div>
<div class="box">
<div class="inner">
<h3>Review Quiz Mistakes</h3>
<p>That quiz was rough. I'm thinking of making a group to go over the mistakes we had on it.</p>
<a href="ViewEvent.html" class="button">View</a>
</div>
<br>
</div>
<div class="box">
<div class="inner">
<h3>Preparing for the Test</h3>
<p>Can we get a group of 5 going to just go over stuff we're having difficulty with.</p>
<a href="ViewEvent.html" class="button">View</a>
</div>
<br>
</div>
<div class="box">
<div class="inner">
<h3>Homework 3</h3>
<p>I wanted to work with some people together to knock out this homework.</p>
<a href="ViewEvent.html" class="button">View</a>
</div>
<br>
</div>
<div class="box">
<div class="inner">
<h3>Review Dynamic Binding</h3>
<p>I'm having trouble with this topic, I don't understand how casting works.</p>
<a href="ViewEvent.html" class="button">View</a>
</div>
<br>
</div>
<div class="box">
<div class="inner">
<h3>Trouble with Inheritance</h3>
<p>I can't wrap my head around this. Let's get a pod going to review this if you're having trouble with it.</p>
<a href="ViewEvent.html" class="button">View</a>
</div>
<br>
</div>
<form action="MakeEvent.html">
<button class="button">Create a Pod</button>
</form>
</div>
</div>
</div>
<!-- Footer -->
<footer id="footer">
</footer>
</body>
</html>