-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcareers.html
executable file
·134 lines (129 loc) · 4.87 KB
/
careers.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<title>Healthstar Informatics</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link rel="shortcut icon" href="favicon.ico" />
<meta name="web_author" content="https://geekboots.net" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/carousel.css" />
</head>
<body>
<header>
<div class="wrapper">
<a href="index.html" id="HSI"></a>
<a id="menu"></a>
<nav class="rightMost">
<ul>
<li><a href="index.html">Home</a></li>
<li>
<a href="about.html">About <img src="assets/images/down-arrow.svg" /></a>
<ul>
<li><a href="about.html#mission">Mission & Values</a></li>
<li><a href="about.html#leadership">Leadership</a></li>
<li><a href="about.html#quality">Quality</a></li>
</ul>
</li>
<li><a href="capabilities.html">Capabilities</a></li>
<li>
<a href="who-we-are.html" >Clients <img src="assets/images/down-arrow.svg" /></a>
<ul>
<li><a href="who-we-are.html#ourClients">Our Clients</a></li>
<li><a href="who-we-are.html#contract-vehicles">Contract Vehicles</a></li>
</ul>
</li>
<li><a href="http://healthstarinfo.com/blogs/">Blog</a></li>
<li><a href="careers.html" class="active">Careers</a></li>
<!-- <li><a href="press.html">Press</a></li> -->
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="banner" class="whoweareBanner">
<div class="wrapper">
<h1>
<small><span>Careers</span></small><br />
Be part of our journey!
</h1>
</div>
</section>
<section id="careers">
<div class="wrapper">
<h2>Join Us!</h2>
<p>Interested in joining a fast paced environment that puts people first?</p>
<p>View <a href="https://www.indeedjobs.com/healthstar-informatics/">our current openings</a></p>
<p>Email us your resume at <a href="mailto:[email protected]">[email protected]</a></p>
</div>
</section>
<footer>
<section>
<div class="wrapper">
<a href="#" id="fHSI"></a>
<address>
<div>
<a href="#"><span class="ph"></span> <samp>(571)-526-4106</samp></a>
<br /><br />
<a href="#"><span class="fax"></span> <samp>(571)-526-4106<samp></a>
</div>
<div>
<a href="#"><span class="loc"></span> <samp>1801 Reston Pkwy<br>Suite #102<br>Reston, VA 20190</samp></a>
<br />
<a href="#"><span class="email"></span> <samp>[email protected]</samp></a>
</div>
</address>
<nav id="social" class="rightMost">
<a target="_" href="https://www.facebook.com/healthstarinfo/" class="facebook"></a>
<a target="_" href="https://www.linkedin.com/company/healthstarinformatics/" class="linkedin"></a>
<!-- <a href="#" class="twitter"></a> -->
<!-- <a href="#" class="rss"></a> -->
</nav>
</div>
</section>
© 2018 HealthStar Informatics. All Rights Reserved.
</footer>
<script
src="https://code.jquery.com/jquery-1.12.4.min.js"
integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ="
crossorigin="anonymous"></script>
<script src="assets/js/slick.min.js" type="text/javascript" charset="utf-8"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-98102940-1', 'auto');
ga('send', 'pageview');
</script>
<script type="text/javascript">
$(document).ready(function () {
$('a#menu').on('click',function () {
$('header nav').slideToggle('slow');
});
$('.customer-logos').slick({
slidesToShow: 6,
slidesToScroll: 1,
autoplay: true,
autoplaySpeed: 1000,
arrows: false,
dots: false,
pauseOnHover: false,
responsive: [{
breakpoint: 768,
settings: {
slidesToShow: 4
}
}, {
breakpoint: 520,
settings: {
slidesToShow: 3
}
}]
});
});
</script>
</body>
</html>