diff options
| author | raysan5 <raysan5@gmail.com> | 2015-09-13 19:31:12 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2015-09-13 19:31:12 +0200 |
| commit | 8bcbea3e32c2d67ce75587d250d6d7a884bb0d0a (patch) | |
| tree | 373a2ce01a0dd120825376dec06409b768135d71 /index.htm | |
| parent | ace7b233986520a9e2aa20b13ad1c10f8d1b172c (diff) | |
| download | raylib-8bcbea3e32c2d67ce75587d250d6d7a884bb0d0a.tar.gz raylib-8bcbea3e32c2d67ce75587d250d6d7a884bb0d0a.zip | |
Added raylib webpage files
Diffstat (limited to 'index.htm')
| -rw-r--r-- | index.htm | 135 |
1 files changed, 135 insertions, 0 deletions
diff --git a/index.htm b/index.htm new file mode 100644 index 00000000..4899f5ce --- /dev/null +++ b/index.htm @@ -0,0 +1,135 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + + <title>raylib</title> + + <meta name="title" content="raylib"> + <meta name="description" content="raylib is a simple and easy-to-use library to learn videogames programming."> + <meta name="keywords" content="raylib, videogames, programming, C, C++, library, learn, study, simple, easy, free, open source, raysan"> + <meta name="viewport" content="width=device-width"> + + <!-- Facebook metatags for sharing --> + <meta property="og:title" content="raylib"/> + <meta property="og:image:type" content="image/png" /> + <meta property="og:image" content="http://www.raylib.com/img/ln_raylib_logo.png"/> + <meta property="og:image" content="http://www.raylib.com/img/fb_raylib_logo.png"/> + <meta property="og:url" content="http://www.raylib.com" /> + <meta property="og:site_name" content="raylib"/> + <meta property="og:description" content="raylib is a simple and easy-to-use library to learn videogames programming."/> + + <meta name="twitter:card" content="summary" /> + <meta name="twitter:site" content="@raysan5" /> + <meta name="twitter:title" content="raylib" /> + <meta name="twitter:description" content="raylib is a simple and easy-to-use library to learn videogames programming." /> + <meta name="twitter:image" content="http://www.raylib.com/img/ln_raylib_logo.png" /> + <meta name="twitter:url" content="http://www.raylib.com" /> + + <link rel="stylesheet" href="css/main.css"> + <link rel="shortcut icon" href="favicon.ico" /> + + <!-- Facebook Conversion Code for visitas_raylib --> + <script> + (function() { + var _fbq = window._fbq || (window._fbq = []); + if (!_fbq.loaded) { + var fbds = document.createElement('script'); + fbds.async = true; + fbds.src = '//connect.facebook.net/en_US/fbds.js'; + var s = document.getElementsByTagName('script')[0]; + s.parentNode.insertBefore(fbds, s); + _fbq.loaded = true; + } + })(); + window._fbq = window._fbq || []; + window._fbq.push(['track', '6023277399201', {'value':'0.00','currency':'EUR'}]); + </script> + <noscript><img height="1" width="1" alt="" style="display:none" src="https://www.facebook.com/tr?ev=6023277399201&cd[value]=0.00&cd[currency]=EUR&noscript=1" /></noscript> + </head> + + <body> + <div class="page"> + <!--[if lt IE 7]> + <p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p> + <![endif]--> + + <div class="header"> + <a id="logo" href="index.htm"></a> + <div id="social"> + <a id="facebook" href="http://www.facebook.com/raylibgames" target="_blank"></a> + <a id="twitter" href="http://www.twitter.com/raysan5" target="_blank"></a> + <a id="github" href="http://github.com/raysan5/raylib" target="_blank"></a> + </div> + <div class="menu"> + <div id="active">about</div> + <a href="download.htm">download</a> + <a href="examples.htm">examples</a> + <a href="helpme.htm">helpme!</a> + <a id="forum" href="http://www.raylib.com/forum/index.php?p=/categories">forum</a> + </div> + </div> + + <div class="content"> + <strong>raylib is a simple and easy-to-use library to learn videogames programming.</strong> + <br> + <a href="https://github.com/raysan5/raylib/releases/download/1.3.0-installer/raylib_installer.exe"><div class="downloadButtonInstaller" id="btnlib">Download raylib Windows Installer (v1.3.0)</div></a> + <br> + <p>raylib is highly inspired by Borland BGI graphics lib and by XNA framework. Allegro and SDL have also been analyzed for reference.</p> + <br> + <!-- + <div id="newVersion">raylib v1.2.2 comes with support for <b>Android</b>, <b>Raspberry Pi</b> and <b>HTML5</b>!</div> + <br> + <p>Wanna check raylib features running on the web? <a class="simplelink" href="raylib_demo.html">CHECK IT HERE!</a></p> + <p>Wanna see all functions available in raylib? <a class="simplelink" href="cheatsheet.html">Check cheatsheet</a></p> + <p><strong>GLOBAL GAME JAM 2015 VIDEOGAME: JUST DO</strong>. Ready to play on web, <a class="simplelink" href="just_do.html">PLAY NOW!</a></p> + <br> + --> + <p><strong>NOTE for ADVENTURERS:</strong> raylib is a programming library to learn videogames programming; no fancy interface, no visual helpers, no auto-debugging... just coding in the most pure spartan-programmers way. Are you ready to learn? <a class="simplelink" href="examples.htm" target="_self">Jump to code examples!</a>.</p> + <br> + <strong>some raylib features</strong> + <br> + <div class="list"> + - Written in plain C code (C99)<br> + - Uses C# PascalCase/camelCase notation<br> + - Hardware accelerated with OpenGL (<strong>1.1, 3.3 or ES2</strong>)<br> + - Unique OpenGL abstraction layer [<a class="simplelink" href="https://github.com/raysan5/raylib/blob/master/src/rlgl.h" target="_blank">rlgl</a>]<br> + - Powerful fonts module with SpriteFonts support<br> + - Outstanding texture formats support, including compressed formats<br> + - Basic 3d support for Geometrics, Models, Heightmaps and Billboards<br> + - Shaders support, including Model shaders and Postprocessing shaders<br> + - Powerful math module for Vector and Matrix operations [<a class="simplelink" href="https://github.com/raysan5/raylib/blob/master/src/raymath.h" target="_blank">raymath</a>]<br> + - Audio loading and playing with streaming support (WAV and OGG)<br> + - Custom color palette for fancy visuals on raywhite background<br> + - <strong>Multiplatform support, including Android, Raspberry Pi and HTML5</strong><br> + </div> + <br> + <br> + <strong>raylib architecture</strong> + <img src="img/raylib_architecture.png" alt="raylib architechture" width="800" height="450"/> + <p>Wanna see all functions available in raylib? <a class="simplelink" href="cheatsheet.html">CHECK CHEATSHEET</a></p> + <br> + <p>raylib is open-source and free to use. <a class="simplelink" href="license.htm" target="_self">View license</a>.</p> + </div> + + <div class="footer"> + <p>Web developed by <a href="http://www.raysanweb.com" target="_blank">RaySan</a> and <a href="http://www.elendow.com" target="_blank">Elendow</a></p> + </div> + + </div> + + <!-- Google Analytics tracking code --> + <script> + (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ + (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), + m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) + })(window,document,'script','http://www.google-analytics.com/analytics.js','ga'); + + ga('create', 'UA-45733555-1', 'raylib.com'); + ga('require', 'linkid', 'linkid.js'); + ga('send', 'pageview'); + </script> + </body> +</html>
\ No newline at end of file |
