-
Notifications
You must be signed in to change notification settings - Fork 0
/
applicationsubmitted.html
82 lines (74 loc) · 3.52 KB
/
applicationsubmitted.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
<!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>
<script src="" crossorigin="anonymous"></script>
</head>
<body onload="formFunction();">
<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" class="active">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">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" style="color:white;">LISTINGS</a>
<a href="benefits.html" style="color:white;">BENEFITS</a>
<a href="application.html" class="active" 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>
<!--Submitted Text-->
<div class="applyDescription" style="margin-top: 15%; margin-bottom: 15%;">
<h1>SUBMITTED!</h1>
</div>
<!--Click here to apply button at end of page-->
<div class="firstfooter">
<div class="applyfooter">
<button id="applybutton" class="dynamicButtonWhite" onclick="document.location='application.html'"
style="display:inline-block;">CLICK HERE TO APPLY</button>
</div>
</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>
</footer>
<!--Import for main js script-->
<script src="js/mainjs.js" type="text/javascript"></script>
</body>
</html>