-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex1.html
223 lines (156 loc) · 4.09 KB
/
index1.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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>IEEE</title>
<link rel="icon" type="image/png" href="icon.png">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- font -->
<link href='https://fonts.googleapis.com/css?family=Corbel' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Charm' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Secular+One' rel='stylesheet'>
<!-- icon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<style type="text/css">
body
{
font-family: 'corbel';
margin: 0%;
}
#developer
{
font-family: 'Charm';
color: white;
font-weight: bold;
opacity: 0.7;
}
#developer:hover
{
cursor: pointer;;
opacity: 1.0;
}
.fa {
font-size: 40px;
text-align: center;
text-decoration: none;
border-radius: 50%;
}
/* Add a hover effect if you want */
.fa:hover {
opacity: 0.7;
}
/* Set a specific color for each brand */
/* Facebook */
.fa-facebook {
/*background: #3B5998;*/
color: white;
}
/* Twitter */
.fa-twitter {
/*background: #55ACEE;*/
color: white;
}
.fa-envelope {
/*background: #55ACEE;*/
color: white;
}
#smalllogo:hover
{
text-decoration: none;
}
.nav
{
font-weight: bolder;
font-size: 20px;
}
/*
#curr2,#curr3,#curr4,#curr5,#curr6
{
color: white;
transition: 0.5s;
border-radius: 25px 25px 25px 25px;
}*/
#curr
{
color: white;
transition: 0.5s;
border-radius: 25px 25px 25px 25px;
}
#curr:hover
{
/*color: green;*/
font-size: 25px;
background-color: white;
color:#0084AD
}
#deskview
{
height: 50px;
}
#about
{
font-size: 30px;
}
.navbar-default {
background-color:#0084AD;
background-image: none;
background-repeat: no-repeat;
}
.img-thumbnail
{
height: 50px;
width: 60px;
}
@media screen and (max-width: 640){
#smalllogo{
display: block;
}
#logoindex{
display: none;
}
}
@media screen and (min-width: 980){
#smalllogo{
display: none;
}
#logoindex{
display: block;
}
}
</style>
<body id="myPage" data-spy="scroll" data-target=".navbar" data-offset="60">
<nav class="navbar navbar-default navbar-fixed-top container-fluid" id="deskview" style="height: 80px; background-color: #023D4F; font-family:Secular One; font-weight: bolder; ">
<div class="container-fluid" style="background-color:#023D4F;" id="todo">
<div class="navbar-header">
<a href="index.html" id="smalllogo" style="color: white;font-weight: bolder;font-size: 25px;text-align: center; display: none;">IEEE NITP</a>
<button type="button" id="bt1" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img id="logoindex" class="img-responsive" src="ieeeLogo.png" style="background-color: #023D4F width: 100px; height: 40px;"></a>
</div>
<div class="collapse navbar-collapse" id="myNavbar" >
<ul class="nav navbar-nav navbar-right" style="margin-top: 15px; text-align: center;" >
<li><a href="index.html" id="curr" class="drop1" style="font-size: 20px;
background-color: white;
color:#0084AD;">HOME</a></li>
<li><a href="events.html" id="curr">EVENTS</a></li>
<li> <a href="galleryiotworkshop.html" id="curr">GALLERY</a>
</li>
<li><a href="committee.html" id="curr">COMMITTEE</a></li>
<li><a href="ecerti.html" id="curr">E-Certi</a></li>
<li><a href="aboutus.html" id="curr">About us</a></li>
</ul>
</div>
</div>
</nav>
</body>
</html>