-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample_student_projects.html
85 lines (55 loc) · 3.33 KB
/
sample_student_projects.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Student Mercenary - Sample Student Page</title>
<link href="stylesheets/style.css" rel="stylesheet" type="text/css" />
<!--[if lte IE 7]>
<link rel="stylesheet" type="text/css" href="css/ie.css" media="screen" />
<![endif]-->
<script type="text/javascript" src="js/jquery-1.6.2.min.js"></script>
<script type="text/javascript" language="javascript" src="js/jquery.dropdownPlain.js"></script>
</head>
<body>
<div id="page-wrap">
<div id="header-container">
<div id="header-top">
<a href="/"><img src="images/logo.png" alt="Student Mercenary" align="left" style="margin:10px 0" name="Student Mercenary" width="177" height="20" display:block; /></a>
<ul class="dropdown" id="dropdown-profile">
<li><a href="sample_student.html">Chris Chapman</a>
<ul class="sub_menu">
<li><a href="student_edit_profile.html">Edit profile</a></li>
</ul>
</li>
</ul>
</div><!-- END HEADER TOP -->
</div><!-- END HEADER CONTAINER -->
<div id="profile-outer-container">
<div id="left-bar-200">
<div id="drop-shadow">
<img src="images/me.png" width="100" height="100" alt="Student" longdesc="images/me.png" />
</div><!-- END DROP SHADOW -->
<p><a href="sample_student.html">Home</a></p>
<p><a href="sample_student_projects.html" style="text-decoration:underline">My Projects</a></p>
<p><a href="#">Portfolio</a></p>
</div><!-- END LEFT BAR 200 -->
<div id="profile-inner-container">
<h2 id="negative-margin">Active Projects</h2>
<hr />
<a href="project_workspace.html"><div id="profile-project-box">
<img src="images/company-logo.png" width="100" height="100" alt="Logo" longdesc="images/company-logo.png" style="margin-right:10px; float:left" />
<p><span class="blue3" id="bold">Project:</span> Design opening graphic to our new webisode series</p>
<p><span class="blue3" id="bold">Company:</span> Teton Gravity Research</p>
</div></a><!-- END PROFILE PROJECT BOX -->
<h2 id="negative-margin" style="margin-top:100px;">Past Projects</h2>
<hr />
<div id="profile-project-box">
<img src="images/company-logo-2.png" width="100" height="100" alt="Logo" longdesc="images/company-logo-2.png" style="margin-right:10px; float:left" />
<p><span class="blue3" id="bold">Project:</span> Design our new website</p>
<p><span class="blue3" id="bold">Company:</span> Reelsick Productions</p>
</div><!-- END PROFILE PROJECT BOX -->
</div><!-- END PROFILE INNER CONTAINER -->
</div><!-- END OUTER CONTAINER -->
</div><!-- END PAGE WRAP -->
</body>
</html>