forked from mozdevs/servo-experiments
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
40 lines (39 loc) · 1.55 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script src="js/index.js"></script>
<title>Servo Experiments</title>
</head>
<body>
<div id="container">
<div class="nav">
<a href="http://servo.org">
<img
width="200"
src="images/servo-color-positive.png" />
</a>
<div class="nav-right">
<a href="https://github.com/servo/servo-experiments/blob/gh-pages/README.md" target="_blank">Add Demo</a>
<a href="https://github.com/servo/servo/wiki" target="_blank">Servo Wiki</a>
</div>
</div>
<hr />
<main class="experiments-container">
<section class="experiments-group" id="other-experiments">
<h2 class="heading">Servo Experiments</h2>
<div class="experiment-previews"></div>
</section>
<section class="experiments-group" id="technical-tests">
<h2 class="heading">Servo Technical Tests</h2>
<div class="experiment-previews"></div>
</section>
<section class="experiments-group" id="videos">
<h2 class="heading">Servo Videos</h2>
<div class="experiment-previews"></div>
</section>
</main>
</div>
</body>
</html>