-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
141 lines (128 loc) · 5.86 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css">
<link rel="stylesheet" href="style1.css">
<title>Title</title>
</head>
<body>
<!-- New nav -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="index.html">
<img src="Images\Logo.png" width="50" height="50" alt="Music-VP Logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo02"
aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
<li class="nav-item">
<a class="nav-link" href="home.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" id="artistTix" type="button" data-toggle="modal"
data-target="#exampleModalLong">Artist</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" id="venueTix" type="button" data-toggle="modal"
data-target="#exampleModalLong">Venues</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" id="datesTix" type="button" data-toggle="modal"
data-target="#exampleModalLong">Dates</a>
</li>
<li class="nav-item">
<a class="nav-link" href="AboutUs.html">Meet the Team</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="contact.html">Contact<span class="sr-only">(current)</span></a>
</li>
</ul>
</div>
</nav>
<!-- New nav end -->
<div class="card"
style="margin-top: 100px; margin-left:100px; margin-right:100px; margin-bottom: 600px; opacity: 0.8; padding: 20px;">
<form>
<div class="form-group">
<label for="exampleFormControlInput1">Your email </label>
<input type="email" class="form-control" placeholder="name@example.com">
</div>
<div class="form-group">
<label for="exampleFormControlSelect1">Your name</label>
<input type="text" class="form-control" placeholder="name">
</select>
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Your message</label>
<textarea class="form-control" rows="3"></textarea>
</div>
<button type="button" class="btn btn-danger" data-toggle="modal" data-target="#contact-modal">
Submit</button>
</form>
</div>
<!-- Modal Starts -->
<div class="modal fade" id="contact-modal" data-target="cModal" tabindex="-1" role="dialog" aria-labelledby="contact-title"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="contact-title">Contact Us</h5>
<button type="button" id="submitContact" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-contact-body">
Thank you for reaching out to us!
We are currently working on this feature and you can see the enhancement in the next phase.
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-target="submitContact">Close</button>
</div>
</div>
</div>
</div>
<!-- Modal Ends -->
<!-- Modal -->
<div class="modal fade" id="exampleModalLong" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Modal title</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
</div>
</div>
</div>
</div>
<!-- Footer Starts -->
<footer class="footer mt-auto py-3 bg-dark ">
<div class="justify-content-center">
<span class="text-white"> Copyright @Music VP | Social Media </span>
<a href="https://www.facebook.com/" target="_blank"><img src="Images\facebook.png" alt="Facebook" width="30px"
height="30px" hspan="20"></a>
<a href="https://www.instagram.com/" target="_blank"><img src="Images\instagram.png" alt="Instagram" width="30px"
height="30px" hspan="20"></a>
<a href="https://twitter.com/" target="_blank"><img src="Images\twitter.png" alt="Twitter" width="30px"
height="30px" hspan="20"></a>
<a href="https://www.pinterest.com/" target="_blank"><img src="Images\pinterest.png" class="mr-1" alt="Pinterest" width="30px"
height="30px" hspan="20"></a><a href="https://www.snapchat.com/" target="_blank"><img src="Images/snapchat.webp" alt="Snapchat" width="30px"
height="30px" hspan="20"></a>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment-with-locales.min.js"></script>
<script src="script.js"></script>
</body>
</html>