-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<nav class="navbar navbar-default">
<div class="container-fluid">
<ul class="nav navbar-nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="Engine/engine.html">WebGL Engine</a></li>
<li><a href="THREE/three.html">THREE.js Scenes</a></li>
</ul>
</div>
</nav>
<p>
The purpose of this website is to display WebGL concepts. I have created a game engine in the past using DirectX, OpenGL and C++ and now I want to take those concpets and transfer them to WebGL.
</p>
<p>
There are currently 2 projects on this site. An engine which uses WebGL to render object efficently and a THREE.js project that has small contained graphic scenes.
</p>
<div>
</body>
</html>