-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
90 lines (73 loc) · 3.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Tag -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Connecting css files -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="styles/style1.css">
<link rel="stylesheet" href="styles/style2.css">
<!-- Connecting Js files -->
<script src="scripts/animation.js"></script>
<script src="scripts/main.js"></script>
<!--Title -->
<title>Blockchain</title>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-dark bg-dark">
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰</span>
<span class="navbar-brand h1">Blockchain</span>
<button class="btn btn-primary" onclick="document.getElementById('id01').style.display='block'" style="width:auto;" role="button" ><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-box-arrow-right" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M10 12.5a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v2a.5.5 0 0 0 1 0v-2A1.5 1.5 0 0 0 9.5 2h-8A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-2a.5.5 0 0 0-1 0v2z"/>
<path fill-rule="evenodd" d="M15.854 8.354a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708.708L14.293 7.5H5.5a.5.5 0 0 0 0 1h8.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3z"/>
</svg> Logout</button>
</nav>
<br>
<br>
<br>
<div class="container-fluid bg-light" style="min-height: 100vh">
<div class="container">
<h4>Contact Us: </h4>
<ul>
<li>Pradeep N - +(91) 936 072 4035</li>
<li>Raj Kulkarni - +(91) 994 005 1258 </li>
<li>S Vinod - +(91) 822 073 9442</li>
<li>Anik Bardhan - (+91) 759 695 3030</li>
</ul>
</div>
</div>
<!-- NavBar -->
<div id="myNav" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div class="overlay-content">
<a href="blochain.html">Home</a>
<a href="About.html">About</a>
<a href="Team.html">Team</a>
</div>
</div>
<!-- Logout form -->
<div id="id01" class="modal">
<div class="jumbotron jumbotron-fluid">
<div class="container">
<div class="imgcontainer">
<span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Modal">×</span>
</div>
<div class="container">
<span type="button" style="text-align: center;"><h4>Are you sure you want to logout?</h4></span>
</div>
<div class="container" >
<button type="button" onclick="location.replace('logout.html')" >Logout</button>
<button type="button" onclick="document.getElementById('id01').style.display='none'" class="cancelbtn" style="background-color: red;width: 100%;">Cancel</button>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-dark text-center text-white">
© Made with ♥ by nameit in 2021. All Rights Reserved.
</footer>
</body>
</html>