-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeb-marketo-form-css.html
91 lines (78 loc) · 3.02 KB
/
deb-marketo-form-css.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
<!DOCTYPE html>
<html lang="en" ng-app="myApp">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="bootstrap/assets/ico/favicon.png">
<title>Marketo forms and css</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<!-- custom marketo styles -->
<link href="css/de-marketo-forms.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="../../assets/js/html5shiv.js"></script>
<script src="../../assets/js/respond.min.js"></script>
<![endif]-->
<!-- Marketo Forms script -->
<script src="//app-sjg.marketo.com/js/forms2/js/forms2.min.js"></script>
<style type="text/css">
/* Add your custom CSS below */
.de-form-container {
border: 3px solid cyan;
}
</style>
</head>
<body>
<div class="container-fluid"><!-- body content -->
<div class="page-header">
<h2>Marketo forms and responsive layout</h2>
</div>
</div><!-- End Container-->
<br/>
<div class="container"><!-- body content -->
<h3>Single column form</h3>
<div class="row">
<div class="col-sm-6 col-xs-6">
<!-- Marketo form -->
<div class="de-form-container">
<form id="mktoForm_1675"></form>
</div>
<script>MktoForms2.loadForm("//app-sjg.marketo.com", "947-IOX-305", 1675);</script>
</div>
</div>
<h3>Two column form</h3>
<div class="row">
<div class="col-sm-6 col-xs-6">
<!-- Marketo form -->
<div class="de-form-container">
<form id="mktoForm_1691"></form>
</div>
<script>MktoForms2.loadForm("//app-sjg.marketo.com", "947-IOX-305", 1691);</script>
</div>
</div>
</div><!-- End Row-->
<br />
<div class="container">
<div class="row">
<h4>Message details</h4>
<div class="col-md-4 col-sm-6">
<a href="?lightboxForm=true" class="btn btn-danger">Request an Appointment</a>
</div>
</div>
</div><!-- End Container-->
</div><!-- End Container fluid-->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<!-- jQuery CDN -->
<script src="http://code.jquery.com/jquery.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script>
</script>
</body>
</html>