-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsummary.html
More file actions
45 lines (41 loc) · 1.42 KB
/
summary.html
File metadata and controls
45 lines (41 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<title>Simpson Final Project Summary</title>
<style>
html, body{
background-color: black;
font-family: sans-serif;
}
#container{
padding: 20px;
background-color: #ede6e6;
color: black;
}
</style>
</head>
<body>
<div id = "container">
<h2>Peter Simpson CSCI 104 Final Project Summary</h2>
<h3>What is my final project?</h3>
<p>My final project is a general-purpose personal landing page for those seeking information about me as a student and professional.</p>
<h3>What does it accomplish for visitors?</h3>
<ul>
<li>Introduces me and my interests in a succint and professional manner.</li>
<li>Serves as a launching pad for direct contact.</li>
<li>Displays my resume for interested parties.</li>
<li>Demonstrates my experience through projects.</li>
<li>Serves as a central directory to organize the various projects I've pursued.</li>
</ul>
<h3>What extras did I employ to accomplish these goals?</h3>
<strong>Iframes</strong>
<ul>
<li>I utilized an iframe to display one of my vide-focused academic projects.</li>
</ul>
<strong>HTML5 Media Tags</strong>
<ul>
<li>I used a media tag (specifically audio) to showcase the guitar work I've done at USC. I utilized the additional controls attribute to allow the user to interact with the underlying audio and play/pause it at will.</li>
</ul>
</div> <!--end of #container -->
</body>
</html>