-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
271 lines (234 loc) · 6.07 KB
/
index.html
File metadata and controls
271 lines (234 loc) · 6.07 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
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<!DOCTYPE html>
<!-- Wilton MicroSystems LLC -->
<html lang="en">
<head>
<link rel="icon" type="image/png" href="https://www.wiltonmicrosystems.com/favicon.png">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wilton MicroSystems LLC</title>
<style>
/* Base Reset and Fonts */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
}
/* Color Scheme */
:root {
--crimson: #a0001e;
--grey: #4a4a4a;
--light-grey: #e6e6e6;
--white: #ffffff;
}
/* Header */
header {
background-color: var(--crimson);
color: var(--white);
padding: 20px 40px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.logo {
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
flex-wrap: wrap;
}
.logo img {
height: 80px;
width: auto
}
.company-name {
font-size: 1.8em;
font-weight: bold;
}
nav {
margin-top: 10px;
}
nav a {
color: var(--white);
text-decoration: none;
margin-left: 20px;
font-weight: 500;
}
nav a:hover {
text-decoration: underline;
}
/* Hero Banner */
.hero {
background-color: var(--grey);
color: var(--white);
padding: 100px 40px;
text-align: center;
}
.hero h1 {
font-size: 2.5em;
margin-bottom: 10px;
}
.hero p {
font-size: 1.2em;
max-width: 600px;
margin: 0 auto;
}
/* Sections */
section {
padding: 60px 40px;
max-width: 1200px;
margin: 0 auto;
}
h2 {
color: var(--crimson);
margin-bottom: 20px;
font-size: 2em;
text-align: center;
}
.about p {
max-width: 800px;
margin: 0 auto;
text-align: center;
font-size: 1.1em;
line-height: 1.8;
}
/* Services */
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 40px;
}
.service {
background-color: var(--white);
padding: 30px;
border: 1px solid var(--light-grey);
border-radius: 8px;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
transition: transform 0.2s ease;
}
.service:hover {
transform: translateY(-5px);
}
.service h3 {
color: var(--grey);
margin-bottom: 15px;
font-size: 1.3em;
}
.service p {
font-size: 1em;
color: #555;
}
/* Footer */
footer {
background-color: var(--grey);
color: var(--white);
text-align: center;
padding: 30px 20px;
margin-top: 60px;
}
footer p {
margin: 5px 0;
}
footer a {
color: var(--white);
text-decoration: none;
margin-left: 5px;
font-weight: 500;
height: 25px;
}
footer img {
height: 25px;
width: auto
}
.follow-us {
display: flex;
justify-content: center;
align-items: center;
gap: 5px;
flex-wrap: wrap;
}
@media (max-width: 600px) {
nav a {
display: block;
margin: 10px 0 0 0;
}
.hero {
padding: 60px 20px;
}
section {
padding: 40px 20px;
}
}
</style>
</head>
<body>
<!-- Header -->
<header>
<div class="logo">
<img src="web_images/wmsicon.png" alt="WMS">
<div class="company-name">Wilton MicroSystems LLC</div>
</div>
<nav>
<a href="#about">About Us</a>
<a href="#services">Services</a>
<a href="#contact">Contact</a>
</nav>
</header>
<!-- Hero Banner -->
<section class="hero">
<h1>Custom Software. DevOps Expertise. Since 1986.</h1>
<p>Delivering trusted software solutions and automation guidance to help your business thrive in a DevOps-driven
world.</p>
</section>
<!-- About Us -->
<section id="about" class="about">
<h2>About Us</h2>
<p>
Since 1986, Wilton MicroSystems LLC has delivered high-quality custom software development and technical guidance
to clients across a wide range of industries. Our mission has always been to empower our clients with robust,
maintainable, and scalable solutions tailored to their needs. Today, our focus is on providing expert advisory
services in CI/CD automation and DevOps best practices. We help engineering teams modernize their workflows,
implement scalable pipelines, and embrace continuous delivery with confidence. We believe in collaboration,
quality, and building long-term relationships with our clients.
</p>
</section>
<!-- Services -->
<section id="services" class="services">
<h2>Our Services</h2>
<div class="services-grid">
<div class="service">
<h3>Technical Audits</h3>
<p>Comprehensive reviews of existing infrastructure, pipelines, and codebases to identify opportunities for
improvement.</p>
</div>
<div class="service">
<h3>CI/CD Automation</h3>
<p>Design and implement continuous integration and delivery pipelines tailored to your development lifecycle.
</p>
</div>
<div class="service">
<h3>DevOps Advisory</h3>
<p>Expert guidance on DevOps strategies, culture, and tooling to improve collaboration and software delivery
speed.</p>
</div>
<div class="service">
<h3>Custom Software Development</h3>
<p>Design and build quality software solutions customized to your workflow and industry requirements.</p>
</div>
</div>
</section>
<!-- Footer -->
<footer id="contact">
<p>© 1986–2026 Wilton MicroSystems LLC. All rights reserved.</p>
<p>Email: info@wiltonmicrosystems.com</p>
</footer>
</body>
</html>