-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (82 loc) · 2.37 KB
/
Copy pathindex.html
File metadata and controls
83 lines (82 loc) · 2.37 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
78
79
80
81
82
83
<!doctype html>
<html>
<head>
<title>OGaml library</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" type="text/css" rel="stylesheet">
<link href="css/monokai.css" rel="stylesheet">
<link href="css/home.css" rel="stylesheet">
<link href="img/favicon-ogaml.ico" type="image/x-icon" rel="icon">
<script src="script/highlight.pack.js"></script>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="script/doc.js"></script>
<script type="text/javascript">hljs.tabReplace = '';
hljs.initHighlightingOnLoad();
window.onload = function() {
var aCodes = document.getElementsByTagName('code');
for (var i=0; i < aCodes.length; i++) {
hljs.highlightBlock(aCodes[i]);
}
}</script>
</head>
<body>
<header>
<h1>
<img src="img/ogaml-logo.svg" alt="OGAML" width="500rem" />
</h1>
<h2>A powerful OCaml multimedia library</h2>
</header>
<section>
<div class="wrapper">
<div class="card">
<h3>Cross-platform</h3>
<p>
Make games or applications that work on Windows, Linux and macOS,
and maybe more.
</p>
</div>
<div class="card">
<h3>2D graphics…</h3>
<p>
Manipulate images, shapes like polygons and text.
</p>
</div>
<div class="card">
<h3>…and 3D graphics!</h3>
<p>
Take full advantage of your GPU, render your 3D models generated in
specific softwares like Blender.
</p>
</div>
<div class="card">
<h3>Audio</h3>
<p>
Play or stream some music to liven your game.
</p>
</div>
<div class="card">
<h3>Open source</h3>
<p>
You're free to chek out the source code on
<a href="https://github.com/ogaml/ogaml">
Github
</a>
and even contribute!
</p>
</div>
</div>
</section>
<p>
Check out the
<a href="doc/doc.html">
documentation
</a>
for more information about the modules of OGaml.
</p>
<p>
This very website is also
<a href="https://github.com/ogaml/ogaml.github.io">
available on Github.
</a>
</p>
</body>
</html>