-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
275 lines (230 loc) · 4.42 KB
/
home.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
<html>
<title>HOME - The IT Professionals</title>
<style>
body {
background-color: #06283D;
margin-top:0%;
}
#nav {
animation: fadeInNav 1s forwards;
position: fixed;
padding: 20px;
background-color: #256D85;
border-radius: 30px;
font-family: monospace;
font-size: 2vw;
z-index: 1;
}
#title {
margin: auto;
width: 50%;
animation: fadeIn 1s forwards;
}
@keyframes fadeInNav {
0% {
opacity: 0;
}
100% {
opacity: 0.9;
transform: translate(0px, 20px);
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
transform: translate(0px, 140px);
}
}
h1 {
display: flex;
justify-content: center;
align-items: center;
margin: auto;
color: white;
font-family: monospace;
font-size: 3vw;
text-shadow: 10px 10px 8px black;
}
h2 {
display: flex;
justify-content: center;
align-items: center;
margin: 20px;
color: white;
font-family: monospace;
font-size: 1.5vw;
height: auto;
text-shadow: 10px 10px 8px black;
}
h3 {
color: white;
font-family: monospace;
font-size: 30px;
width: auto;
text-align:justify;
}
a {
padding: 10px;
border-radius: 10px;
text-decoration: none;
box-shadow: inset 0 0 0 0 #47B5FF;
color: #54b3d6;
transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}
a:hover {
box-shadow: inset 0 0 0 6px #53a7ea;
color: white;
border-radius: 10px;
padding: 10px;
}
.container {
margin-left: -10px;
position: absolute;
width: 100%;
height: 320px;
background-image: url("Pic1.jpg");
background-size: cover;
background-position-x: 0px;
background-position-y: 730px;
opacity: 20%;
z-index: -2;
}
#para {
transform: translate(50px, 250px);
width: 55vw;
display: flex;
align-content: center;
}
#footer {
background-color: #2B4865;
height: 50px;
}
.P1 {
display: flex;
align-items: center;
background-image: url("P1.jpg");
background-size: cover;
margin: 5px;
width: 200px;
height: 200px;
}
.P2 {
background-image: url("P2.jpg");
background-size: cover;
margin: 5px;
width: 200px;
height: 200px;
}
.P3 {
background-image: url("P3.jpg");
background-size: cover;
margin: 5px;
width: 200px;
height: 200px;
}
.P4 {
background-image: url("P4.jpg");
background-size: cover;
margin: 5px;
width: 200px;
height: 200px;
}
#content1 {
margin-right: 10px;
margin-top:-145px;
display: flex;
justify-content: center;
float: right;
transform: rotate(45deg);
background-color: #256D85;
}
#content2 {
margin-right: -275px;
display: flex;
justify-content: center;
float: right;
transform: rotate(45deg);
background-color: #256D85;
}
.backbutton {
border: none;
color: white;
padding: 20px;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 235px 0px 0px 0px;
cursor: pointer;
transition: transform .2s;
background-color: #256D85;
border-radius: 30px;
font-family: monospace;
font-size: 2vw;
}
.backbutton:hover {
transform: scale(1.09);
}
</style>
<header>
<div class="container">
</div>
<div style="display: flex; justify-content: center;">
<div id="nav">
<a href="home.html">HOME</a>
<a href="explore.html">EXPLORE</a>
<a href="aboutUs.html">ABOUT US</a>
</div>
</div>
<!--Body-->
</div>
</header>
<body>
<div id="title">
<h1>THE IT PROFESSIONALS</h1>
<h2>By the Pseudowoodos</h2>
</div>
<div id="para">
<h3>
Computer technology have shaped our world and may now be found in nearly every element of modern
civilization. As a result, computer science is one of the fastest growing areas, and it shows no indications
of slowing down anytime soon. With a computer science or information technology degree, you may work for a
range of companies,aiding in the creation of software, database administration, or website construction.
Other areas, such as finance, law enforcement, and design, also provide career opportunities.
</h3>
</div>
<div id="content1">
<div class="P1">
</div>
<div class="P2">
</div>
</div>
<div id="content2">
<div class="P3">
</div>
<div class="P4">
</div>
</div>
<div>
<center>
<button onclick="document.location='explore.html'"
class = backbutton>
<a href = explore.html>
LET'S EXPLORE
</a>
</button>
</center>
</div>
<!--
<div style=text-align:center;>
<a href="explore.html">
LET'S EXPLORE
</a>
</div>
<footer id="footer">
</footer>
-->
</body>
</html>