generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
115 lines (103 loc) · 6.33 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
<!DOCTYPE html>
<html lang="en">
<!--METATAGS-->
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="The contact for Faux DJs Belfast. Find out their availability and book them for gigs">
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hover.css/2.3.1/css/hover-min.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<title>Faux Djs - Contact Page</title>
</head>
<body class="bg-colour">
<!--Header made with bootstrap 4 navbar-->
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-colour fixed-top">
<a id="logo" href="index.html">FAUX DJs</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="dates.html">Dates</a>
</li>
<li class="nav-item">
<a class="nav-link" href="audio.html">Audio</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>
</header>
<!--Contact Form from bootstrap with bootstrap 3 column structure-->
<section>
<div class="container-fluid">
<div class="row">
<div class="col-sm"></div>
<div class="col-sm">
<form class="contact-form">
<h2 class="contact-form-heading">Check our Availability for your gig!</h2>
<div class="form-group">
<label for="gigtype">Type of Gig</label>
<select class="form-control" id="gigtype">
<option>Bar</option>
<option>Club</option>
<option>Private Party</option>
</select>
</div>
<div class="form-group">
<label for="venue">Venue</label>
<input type="text" class="form-control" id="venue" placeholder="Laverys/Ulster Sports Club etc" required />
</div>
<div class="form-group">
<label for="email">Email address</label>
<input type="email" class="form-control" id="email" placeholder="[email protected]" required />
</div>
<div class="form-group">
<label for="date">Date</label>
<input type="text" class="form-control" id="date" placeholder="05/06/20" required />
</div>
<div class="form-group">
<label for="time">Time</label>
<input type="text" class="form-control" id="time" placeholder="21:00" />
</div>
<button type="submit" class="btn btn-dark contact-form-button">Submit Request!</button>
</form>
</div>
<div class="col-sm"></div>
</div>
</div>
</section>
<!--Footer inc Social Links with Fontawesome icons-->
<footer>
<div class="container-fluid bg-colour fixed-bottom">
<div class="row row-cols-4" id="icon-size">
<div class="col">
<a href="https://www.facebook.com/FAUXDJS/" target="_blank" rel="noopener"><i class="fa fa-facebook" aria-hidden="true"></i><span class="sr-only">Facebook</span></a>
</div>
<div class="col">
<a href="https://www.instagram.com/faux_djs/" target="_blank" rel="noopener"><i class="fa fa-instagram" aria-hidden="true"></i><span class="sr-only">Instagram</span></a>
</div>
<div class="col">
<a href="https://open.spotify.com/playlist/5M18RVJ7ieNpgNbO42d5yE?si=eLizbJ1lQVai1DiTPlesUw" target="_blank" rel="noopener"><i class="fa fa-spotify" aria-hidden="true"></i><span class="sr-only">Spotify</span></a>
</div>
<div class="col">
<a href="https://soundcloud.com/fauxdjs/santeri-a" target="_blank" rel="noopener"><i class="fa fa-soundcloud" aria-hidden="true"></i><span class="sr-only">Soundcloud</span></a>
</div>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>