-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
121 lines (113 loc) · 4.09 KB
/
contact.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
<!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" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Stint+Ultra+Condensed&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<script
src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"
></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"
></script>
<title>TESSERACT</title>
</head>
</html>
<body>
<!--SCROLL TO THE TOP-->
<button
type="button"
class="btn btn-danger btn-floating btn-lg"
id="btn-back-to-top"
>
<span class="material-icons">
arrow_upward
</span>
</button>
<script>
let mybutton = document.getElementById("btn-back-to-top");
window.onscroll = function () {
scrollFunction();
};
function scrollFunction() {
if (
document.body.scrollTop > 20 ||
document.documentElement.scrollTop > 20
) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
mybutton.addEventListener("click", backToTop);
function backToTop() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<!--NAVBAR-->
<div class="topnav" id="myTopnav">
<a href="index.html"><img src="imgs/logot.png" class="logo2"><img class="logo1"src="imgs/banner.png" alt="logo"></a>
<a style="text-decoration:none;" href="index.html#about">About</a>
<a style="text-decoration:none;" href="index.html#speakers">Speakers</a>
<a style="text-decoration:none;" href="index.html#workshops">Workshops</a>
<a style="text-decoration:none;" href="schedule.html">Schedule</a>
<a style="text-decoration:none;" href="index.html#sponsors">Sponsors</a>
<a style="text-decoration:none;" href="contact.html">Contact Us</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<!--CONTACT-->
<div class="container">
<h1>Contact Us</h1>
<img class="contactsj" src="imgs/Sjc.jpg" alt="sjcet" />
<div class="container">
<img class="contactlogo" src="imgs/loc.svg" alt="logo" />
<p class="abt">
St. Joseph's College of Engineering and Technology,<br>Choondacherry,
Palai, Kerala, India 686579
</p>
<img class="contactlogo" src="imgs/email.png" alt="logo" />
<a href="mailto:ieee@sjcetpalai.ac.in"><p class="abt">ieee@sjcetpalai.ac.in</p></a>
<img class="contactlogo" src="imgs/call.png" alt="logo" />
<p class="abt">+91123456789</p>
</div>
</div>
<hr class="new2" />
<h6>© 2021 | IEEE SB SJCET</h6>
</body>