-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·99 lines (94 loc) · 3.55 KB
/
index.html
File metadata and controls
executable file
·99 lines (94 loc) · 3.55 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Markkup | web-connected application development</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<script src="https://use.fontawesome.com/bcc65d42d2.js"></script>
<link rel="stylesheet" href="css/site.css">
</head>
<body>
<header>
<img class="logo" src="images/markkup-logo-light.png" style="width:150px;" alt="markkup" />
</header>
<section class="content">
<h1>Hello. We are a software company specializing in web-connected applications.</h1>
<div class="row">
<div class="col-sm-6">
<h3>Some of our Clients</h3>
<ul class="clients">
<li>Ignite Ventures</li>
<li>BankMobile</li>
<li>Masonic Villages</li>
<li>CertaPro</li>
<li>Berk-Tek</li>
<li>Clipper Magazine</li>
<li>Giant Foods</li>
</ul>
</div>
<div class="col-sm-6">
<h3>Our Location</h3>
<div class="icon"><i class="fa fa-map-marker" aria-hidden="true"></i></div>
<div class="details">
355 East Liberty Street<br>
Suite 200<br>
Lancaster, PA 17602
</div>
<div class="icon"><i class="fa fa-envelope" aria-hidden="true"></i></div>
<div class="details">
<a href="mailto:info@markkup.com">info@markkup.com</a>
</div>
<div class="icon"><i class="fa fa-phone-square" aria-hidden="true"></i></div>
<div class="details">
1-717-201-2010
</div>
</div>
</div>
<div class="row">
<div class="col">
<h3>Get In Touch</h3>
<form id="emailform" action="//1mbkz65uqk.execute-api.us-east-1.amazonaws.com/dev/forms" method="post">
<div class="row indented">
<div class="col-small-6">
<input type="text" name="name" id="name" placeholder="Name" />
</div>
<div class="col-small-6">
<input type="email" name="email" id="email" placeholder="Email" />
</div>
</div>
<div class="row">
<div class="col">
<textarea name="message" id="message" placeholder="Message" rows="4"></textarea>
</div>
</div>
<div class="row indented">
<div class="col-small-6">
<input type="text" name="robot" id="robot" placeholder="What's 5 + 2?" />
<input type="hidden" name="after" value="http://markkup.com/confirm.html">
<input type="hidden" name="source" value="markkup">
</div>
</div>
<div class="row indented">
<div id="formsuccess" class="form-group" style="display: none;color:#49bf9d;">Your contact inquiry was successfully submitted</div>
<div id="formerror" class="form-group" style="display: none;color:darkred;">There was an error submitting your contact inquiry</div>
<div id="forminvalid" class="form-group" style="display: none;color:orange;">Your name and email address are required</div>
</div>
<div class="row indented">
<button type="submit" class="button" id="submit" value="Send Message">Send</button>
</div>
</form>
</div>
</div>
</section>
<footer id="footer">
<ul class="copyright">
<li>© Markkup 2017</li>
</ul>
</footer>
<script src="js/jquery-1.12.1.min.js"></script>
<script src="js/jquery.validate.min.js"></script>
<script src="js/form.js"></script>
<script src="js/site.js"></script>
</body>
</html>