forked from ValYouW/jqPropertyGrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index3.html
36 lines (34 loc) · 1.27 KB
/
index3.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>jqPropertyGrid Example</title>
<!-- https://getbootstrap.com/docs/3.3/getting-started/ -->
<!-- vendor css -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</head>
<body>
<!-- navbar -->
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">jqPropertyGrid</a>
</div>
<div>
<ul class="nav navbar-nav">
<li ><a href="index.html">Example 1</a></li>
<li><a href="index2.html">Example 2</a></li>
<li class="active"><a href="index3.html">Example 3</a></li>
</ul>
</div>
</div>
</nav>
<!-- page content -->
<iframe src="index3-iframe.html"
style="margin: 20px 0px 0px 20px;"
height="211px"
width="258px"></iframe>
</body>
</html>