-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
112 lines (95 loc) · 3.83 KB
/
about.html
File metadata and controls
112 lines (95 loc) · 3.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KFCFJVXSX5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-KFCFJVXSX5');
</script>
<title>WL-MIO About</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="icon" href="images/wl-logo-small.jpg" type="image/x-icon" sizes="16x16" />
</head>
<body>
<div class="container banner text-center">
<h5>WL-MIO Multipurpose I/O Process Controller</h5>
</div>
<div class="container">
<nav class="navbar navbar-expand-lg">
<img src="images/wl-logo-transparent.png" width="160" height="160" class="img-fluid">
<button class="navbar-toggler navbar-light" type="button" data-toggle="collapse" data-target="#main-navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="main-navigation">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="description.html">Description</a>
</li>
<li class="nav-item">
<a class="nav-link" href="configuration.html">Configuration</a>
</li>
<li class="nav-item">
<a class="nav-link" href="specs.html">Specs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="applications.html">Applications</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About Us</a>
</li>
</ul>
</div>
</nav>
</div>
<div class="container">
<h2 class="text-center">About Us</h2>
<hr/>
<h3 class="text-center">The Story of Widgetlords</h3>
<br>
<p>The Widgetlords Electronics mission is to design and create affordable and "Open" solutions and products relevant to users of process control and automation electronics.</p>
<p>Our team of industry veterans have years of experience in the design and manufacturing of environmental monitoring solutions, business management and client services. The Head Design Engineer has helmed projects that range from power monitoring for Data Center applications to digital-based gas detection systems.
</p>
<p>For more on our sister company, visit <a href="https://www.vpprocess.com">www.vpprocess.com</a> </p>
<p>We are a Canadian company located in beautiful British Columbia, Canada.</p>
</div>
<footer class="page-footer">
<div class="container">
<hr>
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-12">
<h6 class="text-uppercase font-weight-bold">Additional Information</h6>
<a href="https://www.widgetlords.com">www.widgetlords.com</a>
<br>
<a href="https://www.vpprocess.com">www.vpprocess.com</a>
<br>
</div>
<div class="col-lg-4 col-md-4 col-sm-12" >
<img src="images/wl-logo-small.png" class="rounded mx-auto d-block" width="100" height="100" >
</div>
<div class="col-lg-4 col-md-4 col-sm-12">
<h6 class="text-uppercase font-weight-bold">Widgetlords Electronics</h6>
<p>VP Process Inc.
<br/>West Kelowna, BC, Canada
<br/>1-250-769-8220
</p>
</div>
</div>
</div>
<div class="footer-copyright text-center">© 2020 Copyright: VP Process Inc.</div>
</footer>
<script src="jquery-3.3.1.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="main.js"></script>
</body>
</html>