-
Notifications
You must be signed in to change notification settings - Fork 1
/
placements.html
58 lines (58 loc) · 1.4 KB
/
placements.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Placements</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
text-align: center;
background: linear-gradient(
to top,
rgba(0, 0, 0, 0.5) 50%,
rgba(0, 0, 0, 0.5) 50%
),
url(JSS.jpeg) no-repeat center center;
background-size: cover;
color: #333;
}
h1 {
margin: 20px 0;
color: bisque;
}
.image-container {
margin: 20px 0;
}
.image-container img {
max-width: 80%;
height: auto;
border: 2px solid #ccc;
border-radius: 8px;
}
.external-link {
display: block;
margin-top: 20px;
font-size: 18px;
color: #00d9ff;
text-decoration: none;
}
.external-link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>PRESTIGIOUS RECRUITERS</h1>
<div class="image-container">
<img src="companies.png" alt="Company Logos" />
</div>
<a
href="https://jssateb.ac.in/placement"
class="external-link"
target="_blank"
>For more details visit JSSATEB</a
>
</body>
</html>