-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnectpage.html
298 lines (253 loc) · 8.59 KB
/
connectpage.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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Website</title>
<link href="favicon.ico" rel="icon" type="image/x-icon">
<style>
@import url("https://fonts.googleapis.com/css?family=Audiowide|Sofia|Trirong");
body {
font-family: "Audiowide";
background: linear-gradient(to bottom right, rgb(34, 34, 97),#001E2B);
}
nav{
background:#001E2B;
position: fixed;
top: 0px;
right: 0px;
left: 0px;
height: 50px;
width: 100%;
z-index: 1;
}
label.logo{
color: skyblue;
font-weight: 40px;
font-size: 70px;
line-height: 50px;
}
.logo:hover {
text-shadow: 0px 0px 10px skyblue, 0px 0px 2px skyblue;
}
.logoimage{
line-height:50px ;
}
nav ul{
float: right;
}
nav ul li{
display: inline-block;
margin: 0 10px;
}
nav ul li a{
color: skyblue;
font-weight: 80px;
font-size: 14px;
text-transform: uppercase;
padding: 7px 13px;
border-radius: 3px;
text-decoration: none;
}
.active a{
background: skyblue;
color: #001E2B;
transition: .5s;
}
a:hover{
background: skyblue;
color: #001E2B;
transition: .5s;
}
section {
padding: 50px;
text-align: center;
display: flex;
flex-direction: column;
}
.card {
width: 200px;
height: 250px;
flex: 1;
}
.job-info {
display: flex;
flex-direction: row;
position: relative;
flex: 1;
}
.card__inner {
margin: 10px 10px 10px 10px;
position: relative;
height: 100%;
transform-style: preserve-3d;
transition: transform 0.5s;
}
.card:hover .card__inner {
transform: rotateY(180deg);
}
.card__body {
position: absolute;
inset: 0;
display: grid;
place-items: center;
backface-visibility: hidden;
border-radius: 8px;
box-shadow: 0px 0px 10px skyblue, 0px 0px 20px skyblue;
object-fit: cover;
}
.card-front img {
width: 100%;
height: 250px;
border-radius: 8px;
}
.card-back {
background-image: linear-gradient(60deg, rgb(58, 162, 180) 14%, rgba(255, 41, 232, 0.7931547619047619) 57%, rgba(252, 69, 79, 0.896796218487395) 89%);
transform: rotateY(180deg);
}
</style>
</head>
<body>
<nav>
<label class="logoimage"><img src="logo.png" height="50px" width="50px"></label>
<label class="logo">MATRIX</label>
<ul>
<li><a href="1_homepage.html">Home</a></li>
<li class="active"><a href="connectpage.html">Connect</a></li>
<li><a href="profilepage.html">Profile</a></li>
<li><a href="loginpage.html" target="_self">Login</a></li>
<li><a href="signup.html">Sign-up</a></li>
<li><a href="1_helppage.html">Help</a></li>
</ul>
</nav>
<section id="home">
<div class="job-info">
<div class="card">
<div class="card__inner">
<div class="card__body card-front">
<img src="ui-ux.jpg">
</div>
<div class="card__body card-back">
<h2 class="card__title">person-1</h2>
<p>UI UX designers create the user interface for an app, website, or other interactive media. Their work
includes collaborating with product managers and engineers to gather requirements from users before
designing ideas that can be communicated using storyboards. They also process flows or sitemaps.</p>
</div>
</div>
</div>
<div class="card">
<div class="card__inner">
<div class="card__body card-front">
<img src="WEB-DEV.jpeg">
</div>
<div class="card__body card-back">
<h2 class="card__title">Person-2</h2>
<p>Web development, also known as website development, refers to the tasks associated with creating,
building, and maintaining websites and web applications that run online on a browser. It may, however,
also include web design, web programming, and database management</p>
</div>
</div>
</div>
<div class="card">
<div class="card__inner">
<div class="card__body card-front">
<img src="game-dev.jpeg">
</div>
<div class="card__body card-back">
<h2 class="card__title">Person-3</h2>
<p>Game development is the process of creating video games — using technical knowledge and skills to turn
game concepts and ideas into reality. While it sounds pretty straightforward, it's a broad field that
involves coding, art design, project management, and more</p>
</div>
</div>
</div>
</div>
</section>
<section id="home">
<div class="job-info">
<div class="card">
<div class="card__inner">
<div class="card__body card-front">
<img src="blockchain.jpeg" alt="">
</div>
<div class="card__body card-back">
<h2 class="card__title">Person-4</h2>
<p>Blockchain development is the process of creating shared, unchangeable, distributed ledger technology
(DLT) that securely records transactions and tracks assets—whether those are physical assets, like money
or real estate, or nonphysical assets, like copyrights—within a network.</p>
</div>
</div>
</div>
<div class="card">
<div class="card__inner">
<div class="card__body card-front">
<img src="AI-ML.jpeg">
</div>
<div class="card__body card-back">
<h2 class="card__title">Person-5</h2>
<p>Artificial Intelligence (AI) is an umbrella term for computer software that mimics human cognition in
order to perform complex tasks and learn from them. Machine learning (ML) is a subfield of AI that uses
algorithms trained on data to produce adaptable models that can perform a variety of complex tasks.</p>
</div>
</div>
</div>
<div class="card">
<div class="card__inner">
<div class="card__body card-front">
<img src="app-dev.jpg" alt="">
</div>
<div class="card__body card-back">
<h2 class="card__title">Person-6</h2>
<p> A web developer's job is to create websites. While their primary role is to ensure the website is
visually appealing and easy to navigate, many web developers are also responsible for the website's
performance and capacity.</p>
</div>
</div>
</div>
</div>
</section>
<section id="home">
<div class="job-info">
<div class="card">
<div class="card__inner">
<div class="card__body card-front">
<img src="cloud-computing.jpg">
</div>
<div class="card__body card-back">
<h2 class="card__title">Person-7</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laborum doloremque assumenda perferendis error
et! Qui architecto asperiores praesentium mollitia, nisi ratione quod totam ipsa voluptate perspiciatis
accusantium ad, tempora ex!</p>
</div>
</div>
</div>
<div class="card">
<div class="card__inner">
<div class="card__body card-front">
<img src="ar-vr.jpg" alt="">
</div>
<div class="card__body card-back">
<h2 class="card__title">Person-8</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Enim sed, quo alias natus impedit ad corrupti
quia facere quibusdam. Quo aspernatur modi amet nesciunt laborum ducimus, ipsa voluptate exercitationem
harum!</p>
</div>
</div>
</div>
<div class="card">
<div class="card__inner">
<div class="card__body card-front">
<img src="data-sci.jpg">
</div>
<div class="card__body card-back">
<h2 class="card__title">Person-9</h2>
<p>Data analytics is the science of analyzing raw data to make conclusions about information. Many of the
techniques and processes of data analytics have been automated into mechanical processes and algorithms
that work over raw data for human consumption.</p>
</div>
</div>
</div>
</div>
</section>
</body>
</html>