-
Notifications
You must be signed in to change notification settings - Fork 0
/
second pg.html
99 lines (92 loc) · 2.55 KB
/
second pg.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
<!DOCTYPE html>
<html>
<head>
<title>B.Tech Notes</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<style>
.heading{
text-align: center;
}
.subhead1{
text-align: center;
background-color: lightblue;
color: aliceblue;
font-size: 1.5em;
}
.container {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.section {
width: 30%;
margin-bottom: 30px;
background-color: #f2f2f2;
padding: 20px;
box-sizing: border-box;
text-align: center;
}
@media only screen and (max-width: 768px) {
.section {
width: 45%;
}
}
@media only screen and (max-width: 480px) {
.section {
width: 100%;
}
}
</style>
</head>
<body>
<h1 class="heading">B.Tech Notes</h1>
<h2 class="subhead1">Discrete Mathematics</h2>
<div class="container">
<div class="section">
<h2>Video</h2>
<p>Video Format Link Here.</p>
</div>
<div class="section">
<h2>Notes</h2>
<p>Text/PDF Format Link Here.</p>
</div>
<div class="section">
<h2>PYQs</h2>
<p>PYQS PDF Format Here.</p>
</div>
</div>
<h3 class="subhead1">Operating Systems</h3>
<div class="container">
<div class="section">
<h2>Video</h2>
<p>Video Format Link Here.</p>
</div>
<div class="section">
<h2>Notes</h2>
<p>Text/PDF Format Link Here.</p>
</div>
<div class="section">
<h2>PYQs</h2>
<p>PYQS PDF Format Here.</p>
</div>
</div>
<h4 class="subhead1">Computer Architecture</h4>
<div class="container">
<div class="section">
<h2>Video</h2>
<p>Video Format Link Here.</p>
</div>
<div class="section">
<h2>Notes</h2>
<p>Text/PDF Format Link Here.</p>
</div>
<div class="section">
<h2>PYQs</h2>
<p>PYQS PDF Format Here.</p>
</div>
</body>
</html>