-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (39 loc) · 1.99 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewpoint" content="width=device-width, initial-scale=1.0">
<title>Natural Design Concepts</title>
<link href="css/bootstrap.min.css" rel="stylesheet"/>
<link href="css/style.css" rel="stylesheet"/>
</head>
<body ng-app="Gallery">
<div class="row">
<ul class="nav-bar col-md-2 nav nav-list bs-docs-sidenav affix">
<li class="active"><a href="#/"><i class="icon-chevron-right"></i> NDC </a></li>
<li class="active"><a href="#/concept/"><i class="icon-chevron-right"></i>Concept</a></li>
<li><a href="#/theArtist/"><i class="icon-chevron-right"></i> The Artist</a></li>
<li><a href="#/gemsAndWood/"><i class="icon-chevron-right"></i> Gems And Wood</a></li>
<li><a href="#navs"><i class="icon-chevron-right"></i> Natural Meets Modern Design </a></li>
<li><a href="#navbar"><i class="icon-chevron-right"></i> Freshwater Shell</a></li>
<li><a href="#/contact/"><i class="icon-chevron-right"></i> Contact</a></li>
</ul>
</div>
<br>
<header class="row col-md-7 col-md-offset-3 text-center" >
<h1 class="title">NATURAL DESIGN CONCEPTS</h1>
<h2>LUXURY BY NATURE...</h2>
</header>
<div class="main row col-md-7 col-md-offset-3 " col-md-offset-3>
<br>
<div ng-view></div>
<br>
</div>
<script src="js/vendor/angular.min.js"></script>
<script src="js/vendor/angular-route.min.js"></script>
<script src="js/vendor/ui-bootstrap-tpls-0.12.1.min.js"></script>
<script src="js/app.js"></script>
<script src="js/controllers/HomeController.js"></script>
<script src="js/controllers/GemWoodController.js"></script>
</body>
</html>