-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
41 lines (39 loc) · 956 Bytes
/
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
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" />
<style type="text/css">
body {
font-family: 'gill sans', 'gill sans mt', calibri, "Trebuchet MS", helvetica, sans-serif;
text-align: center;
}
h1 {
margin: 10px 0 0;
padding: 0;
}
.site {
margin: 0 auto;
width: 680px;
}
.site a {
background-repeat: no-repeat;
background-position: center center;
background-color: #aaa;
width: 320px;
height: 197px;
float: left;
text-indent: -1000000px;
margin: 10px;
}
.site a:hover {
background-color: #fe8;
}
.site a.ruby {
background-image: url(images/ironruby-design-thumb.PNG);
}
.site a.python {
background-image: url(images/ironpython-design-thumb.PNG);
}
</style>
<h1>IronRuby and IronPython website designs</h1>
<div class='site'>
<a class='ruby' href='ruby/index.html'>IronRuby</a>
<a class='python' href='python/index.html'>IronPython</a>
</div>