This repository was archived by the owner on Jan 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
64 lines (48 loc) · 1.8 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script src="js/libs/underscore.js"></script>
<script src="js/libs/tweenLib.js"></script>
<script src="js/index.js"></script>
<title>Servo Experiments</title>
</head>
<body>
<div id="container">
<header id="mainHeader">
<div class="header-inner">
<div class="header-logo">
<a href="http://servo.org"><img width="85" src="images/servo.png" /></a>
</div>
<div class="header-main">
<h1>servo-experiments</h1>
</div>
<div class="header-tagline">
<h3><i>a collection of experiments for the Servo browser engine.</i></h3>
<span class="download-link">
<h4><a href="http://download.servo.org"><i>Get Servo Nightly.</i></a></h4>
</span>
</div>
</div>
</header>
<main class="experiments-container">
<section class="experiments-group" id="featured-experiments">
<h3 class="heading">Featured Experiments</h3>
<div class="experiment-previews">
</div>
</section>
<section class="experiments-group" id="other-experiments">
<h3 class="heading">Other Experiments</h3>
<div class="experiment-previews">
</div>
</section>
<section class="experiments-group" id="technical-tests">
<h3 class="heading">Technical Tests</h3>
<div class="experiment-previews">
</div>
</section>
</main>
</div>
</body>
</html>