-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (48 loc) · 1.86 KB
/
index.html
File metadata and controls
50 lines (48 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>EC Notes</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-REMVHL88EJ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-REMVHL88EJ');
</script>
</head>
<body>
<canvas id="test"></canvas>
<section class="main">
<div style="margin-top: -180px;" class="container">
<div class="heading"><h2>EC Notes</h2></div>
<div class="subjects">
<ul>
<li><a href="" onclick="alertmsg()">3rd semester</a></li>
<li><a href="4thsem/4thsem.html">4th semester</a></li>
<li><a href="5thsem/5thsem.html">5th semester</a></li>
<li><a href="6thsem/6thsem.html">6th semester</a></li>
</ul>
</div>
</div>
</section>
<!-- footer section -->
<footer>
<div class="footer-section">
<h4>Munazza © 2023</h4>
<a href=""><i class="fab fa-whatsapp"></i></a>
<a href="https://www.instagram.com/munxzz._/"><i class="fab fa-instagram"></i></a>
<a href=""><i class="fab fa-github"></i></a>
<a href=""><i class="fab fa-linkedin-square"></i></a>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>