This repository has been archived by the owner on Mar 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathind.html
executable file
·104 lines (88 loc) · 3.97 KB
/
ind.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sidebar Transitions</title>
<meta name="description" content="Sidebar Transitions: Transition effects for off-canvas views" />
<meta name="keywords" content="transition, off-canvas, navigation, effect, 3d, css3, smooth" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/icons.css" />
<link rel="stylesheet" type="text/css" href="css/component.css" />
<link rel="stylesheet" type="text/css" href="css/my.css" />
<link rel="stylesheet" type="text/css" href="css/icemoon.css" />
<script src="js/jquery.js"></script>
<script src="js/jquery.qrcode-0.7.0.min.js"></script>
<script src="js/modernizr.custom.js"></script>
</head>
<body>
<div id="st-container" class="st-container">
<!--
example menus
these menus will be on top of the push wrapper
-->
</nav>
<nav class="st-menu st-effect-12" id="menu-12">
<h2 class="icon icon-stack">Sidebar</h2>
<ul>
<li><a class="icon " href="#">Small Size</a></li>
<li><a class="icon " href="#">Medium Size</a></li>
<li><a class="icon " href="#">Large Size</a></li>
</ul>
</nav>
<!-- content push wrapper -->
<div class="st-pusher">
<!--
example menus
these menus will be under the push wrapper
-->
<div class="st-content"><!-- this is the wrapper for the content -->
<div class="st-content-inner"><!-- extra div for emulating position:fixed of the menu -->
<!-- Top Navigation -->
<header class="codrops-header">
<img class="logo" src="images/logo.png">
<h1>Office Signage Creator <span>Fill, create and print.</span></h1>
<div id="st-trigger-effects">
<button data-effect="st-effect-12">Change Size</button>
</div>
</header>
<div class="ajax">
<div class="main clearfix">
<div class="column">
</div>
<div class="column">
<form action="index.html" method="post">
<div><input class="form-control input-lg" type="text" id="prefix" placeholder="Prefix" /></div>
<div class="col-md-5"><input class="form-control input-lg" type="text" id="fname" placeholder="First Name" /></div>
<div class="col-md-5"><input class="form-control input-lg" type="text" id="lname" placeholder="Last Name" /></div>
<div class="col-md-12"><input class="form-control input-lg" type="text" id="title1" placeholder="Title" /></div>
<div class="col-md-6"><input class="form-control input-lg" type="text" id="email" placeholder="Email" /> </div>
<div class="col-md-3"><input class="form-control input-lg" type="text" id="ext" placeholder="EXT." /></div>
<div class="col-md-3"> <input class="form-control input-lg" type="text" id="bleep" placeholder="Bleep" /></div>
<input name="go" class="button-x" value="Create" onclick="dance()" type="button">
</form>
</div>
<div class="column">
</div>
<div class="column-x">
<canvas class="canvas" id="e" width="1700" height="413"></canvas>
<img id="tag" src="images/small-tag.png" alt="" width="150" height="364">
</div>
<div class="info">
<p>Designed and developed by COMJ IT</p>
</div>
<script src="js/myjs-small.js"></script>
</div><!-- /main -->
</div><!-- /ajax -->
</div><!-- /st-content-inner -->
</div><!-- /st-content -->
</div><!-- /st-pusher -->
</div><!-- /st-container -->
<script src="js/classie.js"></script>
<script src="js/sidebarEffects.js"></script>
</body>
</html>