-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtestdone.html
114 lines (100 loc) · 4.97 KB
/
testdone.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Axcelmark Applications</title>
<link rel="stylesheet" href="css/maincss.css">
<link rel="icon" type="image/x-icon" href="images/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Do you want to work at a marketing product business? Apply to Axcelmark today!">
<script src="https://kit.fontawesome.com/ef4fd3eeca.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<script src="" crossorigin="anonymous"></script>
<!--Import for main js script-->
<script src="js/mainjs.js" type="text/javascript"></script>
</head>
<body onload="typeWriter();">
<header>
<!-- Desktop navigation bar -->
<div class="navbar" id="navbar">
<ul>
<li style="float: left;"><a href="index.html" id="navlogo"><img src="images/AxcelmarkLogo.webp" style="height: 65px;" alt="Axcelmark Logo" /></a></li>
<li style="float: right;"><a href="contact.html" id="navbutton">HELP</a></li>
<li style="float: right;"><a href="application.html" id="navbutton">APPLY</a></li>
<li style="float: right;"><a href="benefits.html" id="navbutton">BENEFITS</a></li>
<li style="float: right;"><a href="listings.html" id="navbutton" class="active">LISTINGS</a></li>
<li style="float: right;"><a href="index.html" id="navbutton">HOME</a></li>
</ul>
</div>
<!-- Mobile navigation bar-->
<div class="mobilenav" id="mobilenav">
<a href="index.html" id="mobileimage"><img id="mobileimage" src="images/AxcelmarkLogo.webp" style="height:50px; " alt="Axcelmark Logo" /></a>
<div id="myLinks">
<a href="index.html" style="color: white; ">HOME</a>
<a href="listings.html" class="active" style="color:white;">LISTINGS</a>
<a href="benefits.html" style="color:white;">BENEFITS</a>
<a href="application.html" style="color:white;">APPLY</a>
<a href="contact.html" style="color: white;">HELP</a>
</div>
<a href="#" class="icon" onclick="myFunction()">
<i class="fa fa-bars" style="width:50px; height: 37px;margin-top: 35%;color:white;"></i>
</a>
</div>
</header>
<div id="listings">
<div class="section1" id="fadeIn">
<picture>
<source srcset="images/listingsfrontimage.webp" media="(min-width: 701px)">
<img src="images/listingsfrontimage.webp" class="section1img" alt="Shirts"
style="width:100%; border: none;" alt="Background with t-shirts">
</picture>
<div class="textcentered" id="textcentered">
<p class="textmainheader" style="margin-top:15px" id="typeText"></p>
</div>
</div>
<p style="text-align:center">Your recommended job is: <strong id="resultp"></strong></p>
<script>
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
if (urlParams.has('result')) {
var result = urlParams.get('result');
if(result == "screenprinter") {
document.getElementById('resultp').innerHTML += "Screen Printer";
}
else if(result == "floormanager") {
document.getElementById('resultp').innerHTML += "Floor Manager";
}
else if(result == "customerservice") {
document.getElementById('resultp').innerHTML += "Customer Service";
}
}
</script>
</div>
<!--Click here to apply button at end of page-->
<div class="firstfooter">
<div class="applyfooter">
<h1 class="sectionheader" style="text-align: center;">FEEL LIKE APPLYING?</h1>
<button id="applybutton" class="dynamicButtonWhite" onclick="document.location='application.html'"
style="display:inline-block; ">CLICK HERE TO APPLY</button>
</div>
</div>
<!--Footer-->
<footer>
<div class="footerrow">
<h3>CONNECT WITH US</h3>
</div>
<div class="footerrow">
<ul class="social-links">
<li><a href="mailto:cstewart@axcelmark.com" aria-label="mail contact info"><i
class="fa-regular fa-envelope"></i></a></li>
</ul>
</div>
<div class="footerrow">
<p>
<a id="copyrightLink" href="copyright.html">©Copyright Axcelmark Official. All rights reserved.</a>
</p>
</div>
<script src="js/animation.js" type="text/javascript"></script>
</footer>
</body>
</html>