-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHOME.html
89 lines (84 loc) · 3.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QS598XH622"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QS598XH622');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Department of Computer Application</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="icons/emoji.png" type="image/x-icon">
</head>
<body>
<header>
<div class="department-title" id="home-button">
<span class="full-title">🖥️ DCA B.Sc (Hons) Computer Science</span>
</div>
<nav>
<ul>
<li class="theme-switch" id="theme-switch"></li>
<li class="profile-icon">
<a href="https://www.ccsuforms.in/scriet_newreg/login.php">
<img src="icons/icons8-test-account-100.png" alt="Profile">
</a>
</li>
<li class="contact-icon">
<a href="contacts/contact.html"> <img src="icons/world-wide-web (1).png" alt="Contact" id="contact-icon"></a>
</li>
</ul>
</nav>
</header>
<main>
<section id="typewriter-section" class="typewriter-section">
<div class="typewriter-container">
<h2>
<span class="static-text">Are you looking for </span>
<span class="typewriter"></span>
</h2>
</div>
</section>
<section id="info-bulletin" class="info-bulletin">
<div class="ticker">
<p>📈UPDATES ARE ON THE WAY📈</p>
</div>
</section>
<section id="last-year-questions" class="content-section" onclick="window.location.href='last_year_questions.html';">
<h2>📄 Previous-years/ Course Books</h2>
<p>Find the previous year's exam papers here.</p>
</section>
<section id="last-year-questions" class="content-section" onclick="window.location.href='software.html';">
<h2>⎋ Softwares</h2>
<p>Discover Software Tools Relevant to Your Courses</p>
</section>
<section id="video-resources" class="content-section" onclick="window.location.href='video_resources.html';">
<h2>🎥 Video Resources</h2>
<p>Access helpful video tutorials and lectures.</p>
</section>
<section id="syllabus" class="content-section" onclick="window.location.href='Syllabus.html';">
<h2>📖 Course Syllabus</h2>
<p>Review the course syllabus.</p>
</section>
<section id="results" class="content-section" onclick="window.location.href='https://result.ccsuniversity.ac.in/regpvt2013.php';">
<h2> 📜 Results</h2>
<p>Have a look at your hard work.</p>
</section>
</main>
<footer>
<p class="contact-footer"><a href="https://scriet.ccsuniversity.ac.in/">© 🏫 Department of Computer Application</a></p>
<!-- <p>© 🏫 Department of Computer Application</p> -->
<p class="contact-footer"><a href="contacts/contact.html">Contact</a></p>
<ul class="social-media">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-linkedin-in"></i></a></li>
</ul>
</footer>
<script src="script.js"></script>
</body>
</html>