-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.html
More file actions
126 lines (113 loc) · 4.12 KB
/
support.html
File metadata and controls
126 lines (113 loc) · 4.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap">
<link rel="icon" type="image/png" href="https://i.ibb.co/YbqnWnk/Screenshot-2023-12-26-225600.png">
<style>
body {
font-family: 'Montserrat', sans-serif;
background-color: #8bc6fc;
color: #fff;
text-align: center;
margin: 0;
padding: 0;
}
header {
background-color: #8bc6fc;
padding: 10px;
text-align: left;
display: flex;
align-items: center;
justify-content: space-between;
}
#logo-container {
display: flex;
align-items: center;
}
#logo {
max-width: 100px; /* Adjust the size as needed */
height: auto;
margin-left: 10px;
cursor: pointer;
}
nav {
display: flex;
align-items: center;
margin-right: 50px;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 10px;
}
nav a:hover {
text-decoration: underline;
}
#favicon-text {
font-size: 16px;
margin-left: 5px;
display: none;
}
#logo-container:hover #favicon-text {
display: inline;
}
/* Style for the button */
.animated-button {
display: inline-block;
padding: 10px 20px;
font-size: 16px;
text-align: center;
text-decoration: none;
background-color: #8bc6fc;
color: #fff;
border: 2px solid #fff;
border-radius: 5px;
font-family: 'Montserrat', sans-serif;
font-weight: 800;
transition: background-color 0.3s, transform 0.2s, color 0.3s;
cursor: pointer;
}
/* Hover effect */
.animated-button:hover {
background-color: #2980b9;
}
/* Click effect */
.animated-button:active {
transform: scale(0.95);
}
</style>
<title>Support - Blue Jet Tech</title>
</head>
<body>
<header>
<div id="logo-container">
<a href="https://bluejettech.com" target="_blank">
<img id="logo" src="https://i.ibb.co/YbqnWnk/Screenshot-2023-12-26-225600.png" alt="Blue Jet Tech Logo">
<span id="favicon-text">Blue Jet Tech</span>
</a>
</div>
<nav>
<a href="https://bluejettech.com">Home</a> •
<a href="https://bluejettech.com/companies">Companies</a> •
<a href="https://bluejettech.com/jobs">Jobs</a> •
<a href="https://bluejettech.com/team">Team</a> •
<a href="https://bluejettech.com/support">Support</a> •
<a href="https://bluejettech.com/aboutus">About Us</a>
</nav>
</header>
<section>
<h1>Support</h1>
<br>
<p>Press the button below to contact the<br>team that works at Blue Jet Tech</p>
<!-- Button with animation -->
<br><br>
<a class="animated-button" href="https://forms.gle/1TEt3ZjsbAsbm6vD8">Go to support form.</a>
</section>
<footer>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br> <br><br><br><br>
<a style="text-decoration: none;" href="https://bluejettech.com">Copyright © 2015-2024 Blue Jet Tech Inc. All rights reserved.                                                                Privacy Policy  |  Terms of Use |  Legal</a>
</footer>
</body>
</html>