-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (87 loc) · 3.15 KB
/
index.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
<!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;
}
#copyright {
font-size: 12px;
margin-top: 20px;
}
#logo-container:hover #favicon-text {
display: inline;
}
</style>
<title>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>
<p>Your text goes here.</p>
</section>
<footer>
<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>