-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
149 lines (139 loc) · 5.57 KB
/
index.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Kube Software</title>
<link rel="stylesheet" href="dist/app.css">
</head>
<body>
<!-- navbar -->
<div class="main-nav">
<div class="container">
<div>
<a href="/" class="logo">KUBE</a>
</div>
<a href="javascript:void(0)" class="menu-toggle">menu</a>
<nav class="nav-right">
<a href="#about">About</a>
<a href="#services">Services</a>
<!-- <a href="#work">Work</a> -->
<!-- <a href="#blog">Blog</a> -->
<a href="#contact" class="text-primary">Contact</a>
</nav>
</div>
</div>
<section class="landing">
<div class="container">
<div class="row">
<div class="col-12 col-md-8">
<h1>
Software Development Agency. <br>
Get it done <u>right</u>, the first time...
</h1>
<a href="#about" class="btn btn-primary mt-4">Learn More</a>
</div>
</div>
</div>
</section>
<!-- about us -->
<section class="container section" id="about">
<div class="section-header">
<h1>About Us</h1>
</div>
<div class="row about-content">
<div class="col-12 col-md-4">
<h4>We're a software development agency based in Bryan, OH specializing in web and mobile applications and API integrations.</h4>
</div>
<div class="col-12 col-md-8 column-layout">
<p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</div>
</section>
<!-- services -->
<section class="section bg-light" id="services">
<div class="container">
<div class="section-header">
<h1>Services</h1>
</div>
<!-- service list -->
<div class="row services">
<div class="col-12 col-md-6 col-lg-2 service-item-wrapper">
<span class="service-icon">
<i data-feather="monitor"></i>
</span>
<div class="service-body">
<h5>Web Apps</h5>
</div>
</div>
<div class="col-12 col-md-6 col-lg-2 service-item-wrapper">
<span class="service-icon">
<i data-feather="smartphone"></i>
</span>
<div class="service-body">
<h5>Mobile Apps</h5>
</div>
</div>
<div class="col-12 col-md-6 col-lg-2 service-item-wrapper">
<span class="service-icon">
<i data-feather="search"></i>
</span>
<div class="service-body">
<h5>Consulting</h5>
</div>
</div>
<div class="col-12 col-md-6 col-lg-2 service-item-wrapper">
<span class="service-icon">
<i data-feather="layers"></i>
</span>
<div class="service-body">
<h5>API's</h5>
</div>
</div>
</div>
</div>
</section>
<!-- work -->
<!-- <section class="container section" id="work">
<div class="section-header">
<h1>Work</h1>
</div>
</section> -->
<!-- blog snippet -->
<!-- <section class="container section" id="blog">
<div class="section-header">
<h1>Blog</h1>
</div>
</section> -->
<section class="container section" id="contact">
<div class="section-header">
<h1>Contact</h1>
<p>Let's build something amazing together!</p>
</div>
<div class="row">
<form class="form col-md-6 offset-md-3 contact-form" action="https://formspree.io/[email protected]" method="POST">
<div class="form-group">
<label>Name</label>
<input type="text" name="Name" class="form-control">
</div>
<div class="form-group">
<label>Email Address</label>
<input type="email" name="Email" class="form-control">
<small class="form-text text-muted">We'll never share your email with anyone else.</small>
</div>
<div class="form-group">
<label>Project Description</label>
<textarea class="form-control" name="Description" rows="5"></textarea>
</div>
<div class="d-block mt-4 text-center">
<button type="submit" class="btn btn-primary btn-block">Submit</button>
</div>
</form>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="dist/app.js"></script>
</body>
</html>