-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
199 lines (181 loc) · 5.9 KB
/
index.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<!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">
<title>Homepage - Chitwan Goel</title>
<link rel="icon" type="image/x-icon" href="favicon.png">
<style>
h3 {
text-decoration: double;
color: yellow;
font-style: italic;
}
.navbar ul {
overflow: auto;
}
.navbar li {
list-style: none;
float: left;
margin: 13px;
}
.navbar li a:link {
font-size: larger;
background-color: transparent;
text-decoration: none;
/*border: none;*/
color: white;
}
.navbar li a:visited {
font-size: larger;
background-color: transparent;
/*border: none;*/
color: cyan;
text-decoration: none;
}
h1 {
text-align: center;
text-decoration: none;
font-size: 300%;
color: white;
font-family: cursive;
}
h2 {
text-align: center;
text-decoration: none;
font-size: 40px;
color: yellow;
margin-top: 50px;
}
.container {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-left: 10px;
margin-top: 50px;
margin-right: 10px;
padding: 0px;
/*border: 2px solid white;*/
}
.item {
width: 27%;
border: none;
margin: 10px;
font-size: larger;
color: white;
}
.line {
font-size: larger;
color: aquamarine;
margin-left: 40pt;
margin-top: 50px;
margin-right: 50pt;
/*border: 2px solid white;*/
}
.navigation {
width: 100%;
height: auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
/*border: 2px solid white;*/
margin-top: 50px;
margin-left: 10px;
}
.subject {
width: 200px;
height: 200px;
border: 2px solid yellow;
border-radius: 50%;
text-align: center;
text-decoration: none;
margin-top: 15px;
margin-bottom: 15px;
color: white;
font-size: 150%;
margin-right: 75px;
margin-left: 75px;
}
.subject:hover {
color: aqua;
}
footer {
margin-left: 10px;
font-size: larger;
color: yellow;
margin-top: 35px;
}
.copy {
text-align: center;
font-size: larger;
color: yellow;
margin-top: 15px;
}
</style>
</head>
<body style="background-image:url('book.jpg');background-size: 100% 100%;">
<header>
<div class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="phy.html">PHY 103</a></li>
<li><a href="mth.html">MTH 101</a></li>
<li><a href="esc.html">ESC 101</a></li>
<li><a href="chm.html">CHM 101</a></li>
<li><a href="art.html">ART 102</a></li>
</ul>
</div>
</header>
<h2>
WELCOME TO MY WEBSITE!
</h2>
<h1>
CHITWAN GOEL
</h1>
<hr>
<div class="container">
<div class="item">
<h3>About Me</h3>
Hey! I am , a first year undergraduate pursuing B.Tech in the Department of Computer
Science and Engineering at Indian Institute of Technology Kanpur. I am an introvert kind of guy who is
always eager to learn new things.
</div>
<div class="item">
<h3>Past and Present</h3>
I am basically from MuzaffarNagar , a small district in Uttar Pradesh. I joined
Aakash Meerut in 11th standard to prepare for JEE and reached here by securing AIR 175 in JEE Advanced
2021. I have got ..... in semester 1 and looking forward to learn some more innovative things in the
upcoming semesters.
</div>
<div class="item">
<h3>About the Website</h3>
One of my first few attempts on web development, the website is basically the
repository of all the quizzes , exams and also some study material of the subjects offered to me in
first semester of the Freshman Year.. The intention behind is the benefit of all those who would be
taking these courses in future.
</div>
</div>
<div class="line">
You can visit the specific course pages by clicking on the suitable links below and I hope that you will
definitely find something helpful.
</div>
<div class="navigation">
<a href="phy.html" class="subject"><br><br><br>PHY 103: PHYSICS-II</a>
<a href="mth.html" class="subject"><br><br>MTH 101: MATHEMATICS-I</a>
<a href="chm.html" class="subject"><br><br>CHM 101: CHEMISTRY LABORATORY</a>
</div>
<div class="navigation">
<a href="esc.html" class="subject"><br><br>ESC 101: FUNDAMENTALS OF COMPUTING</a>
<a href="art.html" class="subject"><br><br>ART 102: INTRODUCTION TO ART APPRECIATION & CRITICISM</a>
</div>
<footer>
Only contributor : Me myself <br>
Only advice : Don't cheat - effects can (will) be severe<br>
Website made by me during the end semester recess of semester-I 2021-22. <br>
Not updated since: 15 March 2022<br>
</footer>
<div class="copy">© No Rights Reserved.</div>
</body>
</html>