-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
111 lines (103 loc) · 3.69 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
<!DOCTYPE html>
<html>
<head>
<title>SRM COURSE GUIDE</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="container">
<div class="header">
<h1>Course Details</h1>
</div>
<div class="button-container">
<button id="regulation-button" class="custom-button">Select Regulation</button>
<button id="course-button" class="custom-button" style="display:none;">Select Course</button>
</div>
<h1 id="subject-title" style="display:none;">Subject Details:</h1>
<div id="subject-details" style="display:none;"></div>
</div>
<div id="regulation-modal" class="modal">
<div class="modal-content">
<h2>Select Regulation</h2>
<button id="regulation-2018" class="custom-button">2018</button>
<button id="regulation-2021" class="custom-button">2021</button>
</div>
</div>
<div id="course-modal" class="modal">
<div class="modal-content">
<h2>Select Course</h2>
<button id="course-cse" class="custom-button">CSE</button>
<button id="course-ai-ml" class="custom-button">AI-ML</button>
<button id="course-ece" class="custom-button">ECE</button>
<button id="course-it" class="custom-button course-2021">IT</button>
<button id="course-eee" class="custom-button course-2021">EEE</button>
<button id="course-big-data-analytics" class="custom-button course-2021">Big Data Analytics</button>
<button id="course-cybersecurity" class="custom-button course-2021">Cybersecurity</button>
<button id="course-biotechnology" class="custom-button course-2021">Biotechnology</button>
</div>
</div>
<footer>
<div class="footer-content">
<div class="footer-text">
Developed by
<a href="https://www.linkedin.com/in/sai23/" target="_blank">Sai Narayana</a>
and
<a href="https://www.linkedin.com/in/hariesh-s-r/" target="_blank">Hariesh</a>
</div>
</div>
</footer>
<style>
footer {
background-color: #333;
color: #fff;
padding: 10px 0; /* Reduced height by adjusting padding */
position: fixed;
bottom: 0;
width: 100%;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
transition: all 0.3s;
}
.footer-content {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.footer-text {
font-size: 16px;
flex: 1;
text-align: center;
}
.footer-text a {
font-weight: 600;
cursor: pointer;
transition: color 0.3s;
color: #fff;
text-decoration: none; /* Removes underline from links */
}
.footer-text a:hover {
color: #b8b8b8;
}
.social-icons {
display: flex;
align-items: center;
}
.social-icons a {
margin-left: 10px;
font-size: 20px;
color: #fff;
transition: color 0.3s;
}
.social-icons a:hover {
color: #0077b5;
}
footer:hover {
transform: translateY(-10px);
box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}
</style>
<script src="script.js"></script>
</body>
</html>