-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdm.html
75 lines (68 loc) · 1.56 KB
/
dm.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
<!DOCTYPE html>
<html>
<head>
<title>DM</title>
<style>
body {
text-align: center;
background-color: #1d1c1c;
}
h1 {
text-align: center;
color: azure;
}
p {
text-align: center;
color: azure;
}
h2 {
text-align: center;
color: rgb(71, 209, 209);
}
.image-container {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
.image-container img {
width: 400px;
height: auto;
margin-bottom: 10px;
}
.image-container a {
margin-bottom: 20px;
text-decoration: none;
color: #000;
font-weight: bold;
}
.image-container a:hover {
color: #555;
}
.image-container h2 {
font-size: 24px;
margin-bottom: 10px;
}
.image-container p {
font-size: 16px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<h1>Discrete Maths</h1>
<h2>DM Syllabus</h2>
<div class="image-container">
<img src="dmsyllabuss.jpg" alt="Image 1">
<a href="dmsyllabuss.jpg" style="color: azure;" download>Download Syllabus</a>
<br>
<h2>Study and Practice Material</h2>
<br>
<a href="internaldmm.jpg" style="color: azure;" download>Click Here to Download Internal Question Paper 2022</a>
<a href="na.html" style="color: azure;" download>Click Here to Download External Question Paper 2022</a>
<br>
<p style="color: azure;">Study Material for this subject will be avaliable soon</p>
</div>
</div>
</body>
</html>