-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
124 lines (107 loc) · 3.1 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
<!DOCTYPE html>
<html lang="en">
<style>
html {
height: 100%;
margin: 0;
}
body {
height: 100%;
margin: 0;
background-image: url('./background.png');
background-repeat: no-repeat;
background-attachment: fixed;
}
.main {
height: 100%;
background-position: center;
background-size: cover;
color: white;
font-family: Nunito;
}
.middle {
position: absolute;
align-items: center;
text-align: center;
padding: 10px;
font-size: 25px;
font-family: Nunito;
}
.desc {
position: relative;
padding: 10px;
top: 100px;
font-size: 16px;
text-align: justify;
font-family: Nunito;
}
.topimg {
width: 80%;
}
@media only screen and (min-width: 768px) {
.desc {
padding: 100px;
}
.topimg {
width: 30%;
}
}
a:link,
a:visited {
border-radius: 10px;
color: white;
font-size: large;
font-family: Nunito;
text-decoration: none;
margin: auto;
border: 2px solid orangered;
padding: 15px;
}
a:hover,
a:active {
background-color: orangered;
}
</style>
<head>
<title>STC IITP</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="./favicon.png" type="image/png">
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
</head>
<body>
<div class="main">
<!-- <div class="top">
<p>Students' Technical Council</p>
</div> -->
<div class="middle">
<img src="./techseason/images/stc_icon_tr.png" class='topimg'>
<h1>COMING SOON</h1>
<a href="./techseason/index.html"><b>Go to TECHSEASON</b></a>
<div class="desc">
<p>
<b>The Technical Affairs, Students Gymkhana</b> welcomes you to the homepage of <b>Students
Technical Council (STC)</b>. STC will have the profusion of various technical clubs, research
activities, technical
competition, inter-disciplinary projects, hence providing the platform where students can
metamorphose their innovative groundbreaking ideas into reality. It proposes to bring all the
technical clubs to operate and coordinate together inside one umbrella(STC), creating a new
symposium for the accomplishments of budding engineers. STC aspires to develop the technical skills
and knowledge of the nascent engineers, thus stimulating innovations and inventions in technology.
STC will effectuate their vision by embracing three concepts:
<ul>
<li>Learning and growing together: STC intends to create a forum by bringing the whole students
community together where students can learn, share and grow together pioneering new ideas
and inventions.</li>
<li>Intra college technical competition and other activities: Organising various competitions,
activities and events to nurture the growth of embryonic engineers and providing them
exposure to various technical areas and competitions.</li>
<li>Organisation of the technical clubs: STC objectives include streamlining all the existing
technical clubs as well as facilitating the establishment of the new clubs.</li>
</ul>
</p>
</div>
</div>
</div>
</body>
</html>