-
Notifications
You must be signed in to change notification settings - Fork 32
/
leads.html
122 lines (109 loc) · 3.39 KB
/
leads.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title>Leads</title>
<meta name="description" content="" />
<!-- CORE CSS -->
<link href="core/css/construct.css" type="text/css" rel="stylesheet" media="all"/>
</head>
<body>
<!-- PAGE -->
<header class="padded flex middle" id="uptop" style="min-height: 25vh; margin-bottom: 0;">
<h1 class="fluid-text courier center"><i class="bi bi-heat"></i><br />Lead Capture</h1>
</header>
<div class="wrap-1200 emptiness padded">
<div class="rebecca-t rice-t-s lucida">
<h2 class="fluid-text baffle center" style="margin: 0; padding: 0;">Marketing splash page boilerplate</h2>
</div>
</div>
<!-- jagged checkerboard divider -->
<div class="clear-block jagged"><p class="checkerboard padding"></p></div>
<!-- flexbox layout -->
<div class="wrap-1600">
<h3 class="courier fluid-text">Flexbox Layout</h3>
<div class="flex flow-text lucida">
<!-- two columns -->
<div class="half padded b-s-t red-b">
<p>.half</p>
</div>
<div class="half padded b-s-t red-b">
<p>.half</p>
</div>
<!-- three columns -->
<div class="third padded b-s-t red-b">
<p>.third</p>
</div>
<div class="third padded b-s-t red-b">
<p>.third</p>
</div>
<div class="third padded b-s-t red-b">
<p>.third</p>
</div>
<!-- four columns -->
<div class="fourth padded b-s-t red-b">
<p>.fourth</p>
</div>
<div class="fourth padded b-s-t red-b">
<p>.fourth</p>
</div>
<div class="fourth padded b-s-t red-b">
<p>.fourth</p>
</div>
<div class="fourth padded b-s-t red-b">
<p>.fourth</p>
</div>
</div>
<p class="spacer"></p>
<div class="flex flow-text lucida">
<main class="main padded b-s-t red-b">
<p>MAIN</p>
</main>
<aside class="sidebar padded b-s-t red-b">
<p>SIDEBAR</p>
</aside>
</div>
<p class="spacer"></p>
<p class="center flow-text padded lucida"><a href="#vanilla" data-modal-open class="btn rounded large-btn box-s pool-party hue-h">Vanilla MODAL</a></p>
<p class="spacer"></p>
</div>
<footer class="padded center courier disabled">
<p><a href="https://www.brutalistframework.com" target="_blank">Brutalist Framework</a> © 2023</p>
</footer>
<!-- Vanilla Modal -->
<div id="vanilla" style="display:none;">
<div class="wrap-960 info padded" style="max-width: 468px;">
<h4 class="flow-text lucida"><i class="bi bi-cone bi-4x"></i> <strong>Vanilla Modal</strong></h4>
<hr class="charlie" />
<p class="flow-text courier">I am a simple vanilla modal that requires <em>buix.js</em> to function.</p>
</div>
</div>
<!-- Initiate and display modal itself -->
<div class="modal">
<div class="modal-inner draggable"><!-- Remove "draggable" class to prevent modals from being moveable -->
<span data-modal-close>×</span>
<div class="modal-content"></div>
</div>
</div>
<!-- Core Scripts -->
<script src="core/jab/buix.js"></script>
<script src="core/jab/bfx.js"></script>
<!-- Plugins -->
<script src="core/jab/jquery.3.js"></script>
<script src="core/jab/age-restrict.js"></script>
<!-- Initialize Age Restrict -->
<script>
$(document).ready(function(){
$.ageCheck({
minAge: 18,
title: 'Age Verify',
copy:'Must be 18 or older',
redirectTo:'',
redirectOnFail:'http://www.brutalistframework.com',
underAgeMsg:'Not old enough!'
});
});
</script>
</body>
</html>