-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patholdindex.html
More file actions
96 lines (81 loc) · 2.59 KB
/
oldindex.html
File metadata and controls
96 lines (81 loc) · 2.59 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
<!DOCTYPE html>
<html>
<head>
<title>Peter Simpson</title>
<meta name="keywords" content="Peter, Simpson, USC, Computer Science, Philosophy">
<meta name="description" content="Peter Simpson is an honors student at the University of Southern California. He is studying philosophy and computer science. Find his contact information, github repos, projects, writing, and more here.">
<link rel="stylesheet" type="text/css" href="style.css">
<style>
#intro{
margin-top: 20px;
margin-bottom: 20px;
}
#introtxt{
float: left;
width: 500px;
}
#headshot{
margin-left: 100px;
padding-bottom: 10px;
float: left;
width: 200px;
}
ul{
margin: 0;
}
p{
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id = "header">
<div id="textbox">
<div id="menu-items">
<a href="home.html"><div id="title"><p>Peter Simpson</p></div></a>
<a href="home.html"><div class="item">Home</div></a>
<a href="resume.html"><div class="item">Resume</div></a>
<a href="projects.html"><div class="item">Projects</div></a>
</div> <!-- end of #menu-items -->
</div> <!-- end of #textbox -->
</div> <!-- end of #header -->
<div id = "container">
<div id = "content">
<div id = "intro">
<div id="introtxt">
<div class="contentbox">
<h4>Who Am I?</h4>
<p>I'm a sophomore honors student at the University of Southern California. I study philosophy and computer science. I have a longtime interest in technology and its applications, particularly as it applies to my lingustics research work.</p>
</div> <!-- end of .contentbox -->
<div class="contentbox">
<h4>Skills</h4>
<ul>
<li>C++</li>
<li>HTML/CSS</li>
<li>Public Speaking</li>
<li>Effective Communicator</li>
</ul>
</div> <!-- end of .contentbox -->
<div class="contentbox">
<a href="resume.html"><h4>Resume</h4></a>
</div> <!-- end of .contentbox -->
<div class="contentbox">
<a href="projects.html"><h4>Projects</h4></a>
</div> <!-- end of .contentbox -->
<div class="contentbox">
<h4>Contact Me</h4>
Email: <a href="mailto:simpson.petere@gmail.com">simpson.petere@gmail.com</a>
</div> <!-- end of .contentbox -->
</div> <!-- end of #introtxt -->
<img id="headshot" src="img/headshot.jpg" alt="Peter Simpson">
<div class="clearfloat"></div>
</div> <!-- end of #intro -->
<div class = "bar"></div>
</div> <!-- end of #content -->
<div class="footer">
<div class="footertxt">Created by Peter Simpson</div>
</div>
</div> <!-- end of #container -->
</body>
</html>