Initial commit
This commit is contained in:
36
vendor/stefangabos/zebra_form/examples/includes/container-html/container.html
vendored
Normal file
36
vendor/stefangabos/zebra_form/examples/includes/container-html/container.html
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
<!-- must be in strict mode! -->
|
||||
<!doctype html>
|
||||
|
||||
<html>
|
||||
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8">
|
||||
|
||||
<title>Zebra_Form Example</title>
|
||||
|
||||
<!-- load Zebra_Form's stylesheet file -->
|
||||
<link rel="stylesheet" href="path/to/zebra_form.css">
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<!--
|
||||
|
||||
the content from the "PHP Source" tab goes here
|
||||
|
||||
-->
|
||||
|
||||
<!-- we're loading the JavaScript files at the bottom of the page so we don't delay page rendering -->
|
||||
|
||||
<!-- try to load jQuery from CDN server and fallback to local source if not available -->
|
||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
|
||||
<script>window.jQuery || document.write('<script src="path/to/jquery-1.9.1.min.js"><\/script>')</script>
|
||||
|
||||
<!-- load Zebra_Form's JavaScript file -->
|
||||
<script src="path/to/zebra_form.js"></script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user