-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.html
28 lines (27 loc) · 1.09 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="static/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="static/styles/main.css">
<title>Three.JS-Webpack Boilerplate</title>
</head>
<body>
<!-- Information modal -->
<a id="open-modal-btn" class="float">
<i class="icon-float material-icons">menu</i>
</a>
<div id="info-modal" class="modal">
<div class="modal-content">
<span class="close-modal-btn">×</span>
<h3>Welcome to my Three.JS-Webpack boilerplate!</h3>
<p>It is a great and easy way to bootstrap Three.Js project.</p>
<p>To get started clone the repo <code>git clone https://github.com/aakatev/three-js-webpack.git</code>.</p>
<p>For more information, navigate to the <a href="https://github.com/aakatev/three-js-webpack">project GitHub page</a>!</p>
</div>
</div>
<!-- End information modal -->
<script src="public/bundle.js"></script>
</body>
</html>