-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSchool.html
128 lines (126 loc) · 5.66 KB
/
School.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
<!DOCTYPE HTML><title>School</title>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="icon" type="image/jpg" href="images/Sai.png"/>
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body class="is-preload">
<!-- loader -->
<div id="preloader"></div>
<!-- Nav -->
<nav id="nav">
<ul class="container">
<li><a href="index.html#top">HOME</a></li>
<li><a href="index.html#work">Projects</a></li>
<li><a href="index.html#PROGRAMS">Programs</a></li>
<li><a href="awards.html">Back</a></li>
</ul>
</nav>
</body>
<article id="work" class="wrapper style2">
<div class="container">
<header>
<h2>School Level Awards</h2>
</header>
<div class="row aln-center">
<div class="col-4 col-6-medium col-12-small">
<section class="box style1">
<span class="image fit"><img src="images/SEMINAR.jpg" alt="" /></span>
<p></p>
<h2>2nd Prize in Computer Science Seminar 2022</h2>
<h4></h4>
</section>
</div>
<div class="col-4 col-6-medium col-12-small">
<section class="box style1">
<span class="image fit"><img src="images/ATL.jpg" alt="" /></span>
<p> </p>
<h2>ATL Student Innovator 2019</h2>
<h4></h4>
<p></p>
</section>
</div>
<div class="col-4 col-6-medium col-12-small">
<section class="box style1">
<span class="image fit"><img src="images/SC18.jpg" alt="" /></span>
<p> </p>
<h2>1st Prize in Annual Science Project Display 2018-19</h2>
<h4></h4>
</section>
</div>
<div class="row aln-center">
<div class="col-4 col-6-medium col-12-small">
<section class="box style1">
<span class="image fit"><img src="images/COMP17.jpg" alt="" /></span>
<p></p>
<h2>1st position in Annual Computer Science Project Display 2017</h2>
</section>
</div>
<div class="col-4 col-6-medium col-12-small">
<section class="box style1">
<span class="image fit"><img src="images/SC17.jpg" alt="" /></span>
<p></p>
<h2>1st in Annual Science Project Display 2017</h2>
</section>
</div>
<div class="col-4 col-6-medium col-12-small">
<section class="box style1">
<span class="image fit"><img src="images/GEN.jpg" alt="" /></span>
<p> </p>
<h2>Rapid Prototyping Camp(MAKE TOMORROW FOR INNOVATION GENERATION</h2>
</section>
</div>
<div class="col-4 col-6-medium col-12-small">
<section class="box style1">
<span class="image fit"><img src="images/APJLAB.png" alt="" /></span>
<p> </p>
<p style="font-size: 30px;"><b>SCIENCE COLLOQUIA 2021-22</b></P>
</section>
</div>
</div>
</div>
</article>
<article id="contact" class="wrapper style4">
<div class="container medium">
<header>
<h2>CONTACT</h2>
<h4>For any support please contact me at <a style="color: darkcyan;" href="mailto:[email protected]">[email protected]</a></h4>
</header>
<div class="row">
</div>
<hr />
<h3>Find me on ...</h3>
<ul class="social">
<li><a href="https://www.instagram.com/saisumanbebarta/" class="icon brands fa-instagram"><span class="label">instagram</span></a></li>
<li><a href="https://www.facebook.com/saisuman.bebarta.3" class="icon brands fa-facebook-f"><span class="label">Facebook</span></a></li>
<li><a href="https://github.com/Saisumanbebarta" class="icon brands fa-github"><span class="label">Github</span></a></li>
</ul>
<hr />
</div>
</div>
<footer>
<ul id="copyright">
<li>© Sai Suman Bebarta. All rights reserved.</li>
</ul>
</footer>
</div>
</article>
<!-- loader -->
<script>
var loader = document.getElementById("preloader");
window.addEventListener("load", function () {
var now = new Date();
var uptoTime = new Date(now.getTime() + 2000);
var op = 1;
setInterval(() => {
op = op - 0.05;
loader.style.opacity = op
if (new Date().getTime() > uptoTime) {
loader.style.display = "none";
}
}, 100);
})
</script>
<!-- loader -->
</body>