-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
26 lines (21 loc) · 833 Bytes
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<title>jQuery FormBuilder Tutorial</title>
<!-- JQuery Script-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<!-- Form Builder Script -->
<script src="https://formbuilder.online/assets/js/form-builder.min.js"></script>
<!-- Custom Script -->
<script src="js/script.js"></script>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css" type="text/css" />
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css" type="text/css" />
</head>
<body>
<!-- Builder Wrap -->
<div class="build-wrap form-wrapper-div"></div>
</body>
</html>