-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.html
More file actions
90 lines (81 loc) · 4.14 KB
/
contacts.html
File metadata and controls
90 lines (81 loc) · 4.14 KB
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>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<title>Contact</title>
<style>
body{
background-color: black;
font-family: "Segoe UI";
}
p{
font-size: 1.2em;
}
a,a:visited{
color:whitesmoke;
}
#m{
height: 320px;width: 648px;border: 1px solid white;border-radius: 8px;
animation: i 2s;
}
@keyframes i {
from {opacity: 0;}
to{ opacity: 1;}
}
@media (max-width: 600px){
#m{
width: auto;
height:auto;
}
}
</style>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<nav class="navbar navbar-expand-md px-0 mx-0 fixed-top">
<div class="container">
<button class="navbar-toggler ml-auto" data-toggle="collapse" data-target="#mainNav">
<span class="navbar-toggler-icon bg-light text-dark"></span>
</button>
<div class="collapse navbar-collapse" id="mainNav">
<div class="navbar-nav px-0 mx-0" >
<a class="nav-item nav-link text-white navbar-brand ml-auto" href="index.html">Home</a>
<a class="nav-item nav-link text-white navbar-brand ml-auto" href="abt.html" >About</a>
<a class="nav-item nav-link text-white navbar-brand ml-auto " href="acad.html" >Academics</a>
<a class="nav-item nav-link navbar-brand text-white ml-auto" href="proj.html">Projects</a>
<a class="nav-item nav-link text-danger navbar-brand active ml-auto" href="contacts.html"style="position: absolute;left: 1070px;" >Contact</a>
</div>
</div>
</div>
</nav>
<div class="jumbotron jumbotron-fluid " style="background-color:black;height:40px;margin-bottom: 105px;margin-left: 100px;padding-bottom: 0;padding-top: 20px;margin-right: 80px;"></div>
</div>
<div class="container text-white" id="m">
<h1 style="margin-bottom: 40px;padding-top: 7px;">Contact</h1>
<div class="row">
<p class="col-2" style="color:greenyellow;">Address : </p>
<p class="col-10">28a, Dattaprabha Society, behind ESP tank, Kurla-link Road, Andheri, Mumbai-85.</p></div>
<div class="row">
<p class="col-2" style="color:greenyellow;">E-mail : </p>
<p class="col-10">mohitmarathe@yahoo.com</p></div>
<div class="row">
<p class="col-2" style="color:greenyellow;">Mobile : </p>
<p class="col-10">(+91) 9856237845, (+91) 7865412329</p></div>
<div class="row justify-content-center" style="position: relative;top: 20px; ">
<a href=""><i class="fa fa-facebook col-1 fa-lg" aria-hidden="true" ></i></a>
<a href=""> <i class="fa fa-instagram col-1 fa-lg" aria-hidden="true"></i></a>
<a href=""><i class="fa fa-linkedin col-1 fa-lg" aria-hidden="true"></i></a>
<a href=""><i class="fa fa-github col-1 fa-lg" aria-hidden="true"></i></a>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
</body>
</html>