Skip to content

Commit f190ca2

Browse files
authored
Add files via upload
1 parent 9fa437f commit f190ca2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+12297
-0
lines changed

Hardware.html

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Hardware</title>
6+
<style>
7+
.glow-btn {
8+
padding: 15px 30px;
9+
font-size: 1.2em;
10+
color: #fff;
11+
background: #28a745;
12+
border: none;
13+
border-radius: 10px;
14+
box-shadow: 0 0 10px #0f0, 0 0 20px #0f0, 0 0 30px #28a745;
15+
transition: box-shadow 0.3s, background 0.3s;
16+
cursor: pointer;
17+
}
18+
.glow-btn.active {
19+
box-shadow: 0 0 30px #ff0, 0 0 60px #ff0, 0 0 90px #0f0;
20+
background: #1e7e34;
21+
}
22+
</style>
23+
</head>
24+
<body>
25+
<h1>Hardware Page</h1>
26+
<button class="glow-btn" id="hardware-btn">Glow Button</button>
27+
<script>
28+
const btn = document.getElementById('hardware-btn');
29+
btn.addEventListener('mouseenter', function() {
30+
btn.classList.add('active');
31+
});
32+
btn.addEventListener('mouseleave', function() {
33+
btn.classList.remove('active');
34+
});
35+
</script>
36+
</body>
37+
</html>

Network.html

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Network</title>
6+
<style>
7+
.glow-btn {
8+
padding: 15px 30px;
9+
font-size: 1.2em;
10+
color: #fff;
11+
background: #6f42c1;
12+
border: none;
13+
border-radius: 10px;
14+
box-shadow: 0 0 10px #a0f, 0 0 20px #a0f, 0 0 30px #6f42c1;
15+
transition: box-shadow 0.3s, background 0.3s;
16+
cursor: pointer;
17+
}
18+
.glow-btn.active {
19+
box-shadow: 0 0 30px #0ff, 0 0 60px #0ff, 0 0 90px #a0f;
20+
background: #543090;
21+
}
22+
</style>
23+
</head>
24+
<body>
25+
<h1>Network Page</h1>
26+
<button class="glow-btn" id="network-btn">Glow Button</button>
27+
<script>
28+
const btn = document.getElementById('network-btn');
29+
btn.addEventListener('mouseenter', function() {
30+
btn.classList.add('active');
31+
});
32+
btn.addEventListener('mouseleave', function() {
33+
btn.classList.remove('active');
34+
});
35+
</script>
36+
</body>
37+
</html>

Software.html

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Software</title>
6+
<style>
7+
.glow-btn {
8+
padding: 15px 30px;
9+
font-size: 1.2em;
10+
color: #fff;
11+
background: #007BFF;
12+
border: none;
13+
border-radius: 10px;
14+
box-shadow: 0 0 10px #00f, 0 0 20px #00f, 0 0 30px #007BFF;
15+
transition: box-shadow 0.3s, background 0.3s;
16+
cursor: pointer;
17+
}
18+
.glow-btn.active {
19+
box-shadow: 0 0 30px #0ff, 0 0 60px #0ff, 0 0 90px #00f;
20+
background: #0056b3;
21+
}
22+
</style>
23+
</head>
24+
<body>
25+
<h1>Software Page</h1>
26+
<button class="glow-btn" id="software-btn">Glow Button</button>
27+
<script>
28+
const btn = document.getElementById('software-btn');
29+
btn.addEventListener('mouseenter', function() {
30+
btn.classList.add('active');
31+
});
32+
btn.addEventListener('mouseleave', function() {
33+
btn.classList.remove('active');
34+
});
35+
</script>
36+
</body>
37+
</html>

assets/css/fontawesome-all.min.css

Lines changed: 101 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/images/bg.jpg

232 KB
Loading

assets/css/images/ie/footer.png

424 Bytes
Loading

assets/css/images/ie/footer.svg

Lines changed: 9 additions & 0 deletions
Loading

assets/css/images/itstudent.jpg

9.7 KB
Loading

assets/css/images/itstudent1.png

343 KB
Loading

assets/css/images/itstudent2.jpg

33.4 KB
Loading

0 commit comments

Comments
 (0)