-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (62 loc) · 1.65 KB
/
index.html
File metadata and controls
63 lines (62 loc) · 1.65 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
<meta name="viewport" content="width=device-width">
<title>Rud Adv. Motion Graphics</title>
<link href="skeleton.css" rel="stylesheet" type="text/css" />
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<div class="headTitle">
<h1>Larry Rud</h1>
<h3>Valencia College • Spring 2022</h3>
</div>
</header>
<main>
<table>
<h4>DIG 2341 | Advanced Motion Graphics</h4>
<thead>
<th class="project">Project</th>
<th class="status">Status/Grade</th>
</thead>
<tbody>
<tr>
<td><a href="logo.html">Animated Logo</a></td>
<td class="graded">10/10</td>
</tr>
<tr>
<td><a href="typography.html">Kinetic Typography</a></td>
<td class="inProgress">In Progress</td>
</tr>
<tr>
<td><a href="tag.html">End Tag Project</a></td>
<td class="graded">20/20</td>
</tr>
<tr>
<td><a href="bumper.html">Bumper Project</a></td>
<td class="graded">10/10</td>
</tr>
<tr>
<td><a href="interstitial.html">Interstitial</a></td>
<td class="inProgress">In Progress</td>
</tr>
<tr>
<td><a href="title.html">Title Sequence</a></td>
<td class="upcoming">Upcoming</td>
</tr>
<tr>
<td><a href="logo.html">Character Animation</a></td>
<td class="upcoming">Upcoming</td>
</tr>
</tbody>
</table>
</main>
<footer>
<div class="foot">
<p>This website was built using the following tools:</p>
<p>Replit.com</p>
<p>Skeleton CSS</p>
<p>Adobe After Effects</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>