-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (97 loc) · 3.11 KB
/
Copy pathindex.html
File metadata and controls
98 lines (97 loc) · 3.11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dynamic Content</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<header class="header">
<div class="header-content">
<h1 class="site-title">
<img
id="logo"
src="https://krct.ac.in/images/top-log1.gif"
alt="logo_kct"
/>
<br />
K RAMAKRISHNAN COLLEGE OF TECHNOLOGY<br />
<p class="slogan">Samayapuram, Tiruchirappalli - 621112</p>
</h1>
<p class="slogan">Explore 🔸 Understand 🔸 Act</p>
</div>
<div id="datetime" class="datetime"></div>
</header>
<div class="container">
<div class="left">
<div id="titleAuthor">
<h2>Title</h2>
<p>Author Name</p>
</div>
<div id="info">
<h3>Information</h3>
<p>Latest Trends</p>
</div>
</div>
<div class="right">
<div class="circle">
<img id="authorImage" src="placeholder.jpg" alt="Author Image" />
</div>
<p><a id="moreInfoBtn" href="#" target="_blank">More Info</a></p>
</div>
</div>
<footer class="footer">
<div class="footer-content">
<div class="copyright">
© 2025
<a id="jogle" href="https://5f53ec90ac242.site123.me/" target="_blank"
>JOGLE</a
>
</div>
<div class="social-media">
<a
target="_blank"
href="https://www.facebook.com/krctofficial/"
class="social-icon"
><i class="fab fa-facebook-f"></i
></a>
<a
target="_blank"
href="https://twitter.com/krcttrichy1?lang=en"
class="social-icon"
><i class="fab fa-twitter"></i
></a>
<a
target="_blank"
href="https://www.instagram.com/krctofficial/?hl=en"
class="social-icon"
><i class="fab fa-instagram"></i
></a>
<a
target="_blank"
href="https://in.linkedin.com/school/krctofficial/"
class="social-icon"
><i class="fab fa-linkedin"></i
></a>
<a target="_blank" href="https://krct.ac.in/" class="social-icon"
><i class="fa fa-globe"></i
></a>
<a
target="_blank"
href="https://www.youtube.com/channel/UC3GjAOANAgY-phUs3zBeRCQ"
class="social-icon"
><i class="fab fa-youtube"></i
></a>
</div>
<a href="tel:+91 6382437327" class="contact-link">Contact Us</a>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.3.0/papaparse.min.js"></script>
<script src="./app.js"></script>
</body>
</html>