-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·83 lines (72 loc) · 3.11 KB
/
index.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
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>XLC Team's dev page</title>
<link href='http://fonts.googleapis.com/css?family=Exo' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css"/>
<link rel="shortcut icon" href="css/img/logo_black.png" />
<script src="js/jquery.js"></script>
<script src="js/jquery.cycle.all.js"></script>
<script>
$(document).ready(function() {
$('#projects').cycle({
fx: 'scrollHorz',
delay: 4000 ,
prev: '#leftarrow',
next: '#rightarrow'
});
});
</script>
</head>
<body>
<div id="header">
<div id="headcontent">
<a href="http://xlcteam.github.com">
<img id="logo" src="css/img/logo_white_small.png" ></img>
</a>
<h1 class="head">XLC Team's dev page</h1>
<p>projects we work on</p>
</div>
</div>
<div id="content">
<div style="width: 750px; margin: 0 auto">
<div id="leftarrow"><span id="arrow">‹<span></div>
<div id="rightarrow"><span id="arrow">›<span></div>
<div id="projects">
<div class="slideshow">
<img class="screen" src="css/img/scr_nxtedemu.png" alt="nxted & nxtemu" />
<div class="sbottom">
<div class="stitle"><a href="http://xlcteam.github.com/nxtIDE">nxtIDE</a></div>
<p>the only thing you need to play with Lego robots and Python</p>
</div>
</div>
<div class="slideshow">
<img class="screen" src="http://farm8.staticflickr.com/7218/7090805801_a9939248ac.jpg" width="450" height="283" alt="scoreBoard" />
<div class="sbottom">
<div class="stitle"><a href="http://xlcteam.github.com/scoreBoard">scoreboard</a></div>
<p>play games, keep score and show results easily!</p>
</div>
</div>
<div class="slideshow">
<img class="screen" src="http://farm9.staticflickr.com/8321/7986074995_b9ccee7599.jpg" width="450" height="283" alt="pixloid" />
<div class="sbottom">
<div class="stitle"><a href="http://xlcteam.github.com/pixloid">pixloid</a></div>
<p>make your pixels count</p>
</div>
</div>
<div class="slideshow">
<img class="screen" src="http://farm9.staticflickr.com/8025/7103104239_6d515f9703_n.jpg" width="450" height="283" alt="Our robots" />
<div class="sbottom">
<div class="stitle"><a href="http://xlc-team.info">Robots</a></div>
<p>We build robots. Because we can.</p>
</div>
</div>
</div>
<div style="clear: both"></div>
</div>
</div>
<div id="footer">
<small>© 2012 XLC-Team aka 0x584C43. All rights reserved. </small>
</div>
</body>
</html>