-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathswedish.html
More file actions
77 lines (74 loc) · 2.65 KB
/
Copy pathswedish.html
File metadata and controls
77 lines (74 loc) · 2.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!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" xml:lang="en" lang="en">
<head>
<title>Whatarthurdoes</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<link href="css/reset.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/jquery.lightbox-0.5.css" rel="stylesheet" type="text/css" media="screen" />
<script type="text/javascript" src="js/jquery.js"></script>
<!-- Loading -->
<script type="text/javascript">
$(function () {
$('.main_content, .main_navi').hide();
$(window).load(function () {
$('#loader').fadeOut();
$('.main_content, .main_navi').fadeIn(2000);
});
});
$(document).ready(function () {
$("body").css("display", "none");
$("body").fadeIn(2000);
$("a.transition").click(function (event) {
event.preventDefault();
linkLocation = this.href;
$("body").fadeOut(1000, redirectPage);
});
function redirectPage() {
window.location = linkLocation;
}
});
</script>
</head>
<body id="view-work">
<div id="container">
<div class="stripe"></div>
<div id="content">
<!-- Header -->
<div id="header">
<!-- <div id="loader"><img alt="" src="img/ajax-loader.gif" /></div> -->
<a href="index.html"><img alt="" class="logo" src="img/logo.png" /></a>
<ul class="main_navi">
<li><a class="transition" href="index.html">Home</a></li>
<li class="current"><a href="index.html#best_work">Projects</a></li>
<li><a href="index.html#info">About</a></li>
<li><a href="Arthur_Yan_Resume.pdf" target="_blank">Resume</a></li>
</ul>
</div>
<!-- Top Content -->
<div class="main_content">
<h1 class="title_work">Swedish Test</h1>
<div class="view-work">
<div class="work_info_text">
<div class="description">
<p>Simple testing module utilized to help test my Swedish vocabulary while studying abroad.
</p>
</div>
<div class="description"><h4>Link: <br><a href="https://github.com/whatarthurcodes/Swedish-Test">https://github.com/whatarthurcodes/Swedish-Test</a></h4></div>
<h4>Tools:</h4>
<br>
<ul class="tools">
<li>Python</li>
</ul>
</div>
<!-- <div class="title_img"><img alt="" src="img/best_work/buddyup.png" />
</div> -->
</div>
</div>
<div id="footer">© Created by the one and only Arthur Yan 2015
</div>
</div>
</div>
</div>
</body>
</html>