-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
161 lines (140 loc) · 3.46 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Line Tech.co</title>
<link rel="icon" href="talk__2__XxL_icon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
<style>
/* styles.css */
body, html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background-color: #f9f9f9;
color: #333;
text-align: center;
}
h1 {
margin-top: 30px;
color: #004d99;
font-size: 2.5em;
}
hr {
border: 0;
height: 3px;
background: #004d99;
margin: 30px 0;
}
.logo {
max-height: 150px;
margin: 20px 0;
}
p {
font-size: 16px;
margin: 20px auto;
line-height: 1.6;
max-width: 800px;
}
h2 {
margin-top: 40px;
margin-bottom: 20px;
color: #004d99;
font-size: 2em;
text-align: left;
padding-left: 20px;
}
h3 {
color: #004d99;
font-size: 1.5em;
}
ul {
list-style-type: disc;
padding-left: 40px;
text-align: left;
margin: 20px auto;
max-width: 800px;
}
li {
margin: 10px 0;
}
a {
color: #004d99;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
margin: 20px auto;
max-width: 1000px;
padding: 0 20px;
}
.job-opportunities {
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
margin: 20px;
width: 100%;
max-width: 800px;
text-align: left;
}
.job-opportunities h2 {
margin-bottom: 20px;
}
.job-opportunities p {
font-size: 16px;
margin-bottom: 20px;
}
.job-opportunities ul {
margin-bottom: 20px;
}
.job-opportunities a {
color: #004d99;
font-weight: bold;
}
.job-opportunities a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.job-opportunities {
padding: 15px;
}
}
</style>
</head>
<body>
<h1>About Us</h1>
<hr>
<!--<img class="logo" src="swift.png" alt="Logo">-->
<p>Line Tech is a company with skilled developers dedicated to giving you your desired website/application.</p>
<div class="container">
<!-- Job Opportunities Section -->
<div class="job-opportunities">
<h2>Job Opportunities:</h2>
<p>Are you looking for a career in the tech industry? L.T.co (Line Tech.co) is hiring!</p>
<h3>We are currently looking for:</h3>
<ul>
<li>Marketers</li>
<li>Senior Developers</li>
<li>Junior Developers</li>
<li>Project Managers</li>
<li>UX/UI Designers</li>
<li>Quality Assurance Specialists</li>
<li>IT Support Specialists</li>
<li>Interns</li>
<li>Testers</li>
</ul>
<p>If you are interested in joining our team, please send your resume and a cover letter to <a href="mailto:[email protected]">[email protected]</a> In your application, please specify the position you are applying for and whether you are applying as a senior or junior developer <b>or your application will be voided/null.</b> Unless you are applying as a Tester!</p>
<p>We look forward to hearing from you!</p>
</div>
</body>
<br>
</html>