-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
118 lines (108 loc) · 5.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Pink Floyd The message</title>
<!-- favicon -->
<link rel="icon" type="image/png"
href="https://thestarvingcoder.github.io/favorite_band/assets/images/favicon.ico?" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Font Awesome -->
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<!-- Roboto Font -->
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="https://thestarvingcoder.github.io/favorite_band/assets/styles/style.css">
</head>
<body>
<!-- nav bar code -->
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="https://thestarvingcoder.github.io/favorite_band/index.html">Pink Floyd</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a href="https://thestarvingcoder.github.io/favorite_band/band.html">The Band</a></li>
<li><a href="https://thestarvingcoder.github.io/favorite_band/events.html">Events</a></li>
<li><a href="https://thestarvingcoder.github.io/favorite_band/oldbutgold.html">Old but Gold</a></li>
<li><a href="https://thestarvingcoder.github.io/favorite_band/contact.html">Contact Us!</a></li>
<li><a href="https://thestarvingcoder.github.io/favorite_band/mockup.html">Mock up Page</a></li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<!-- Contact Us Section -->
<section class="Material-contact-section section-padding section-dark">
<div class="row row-no-gutters">
<div class="col-sm-3"></div>
<!-- contact form -->
<div class="col-sm-6 wow animated fadeInRight " data-wow-delay=".2s">
<form class="shake" method="post" id="contactForm" name="contact-form" data-toggle="validator">
<h1 class="section-title text-center">Send us a Message.</h1>
<!-- Name -->
<div class="form-group label-floating">
<label class="control-label" for="name">Name</label>
<input class="form-control" id="name" type="text" name="name" required
data-error="Please enter your name">
<div class="help-block with-errors"></div>
</div>
<!-- email -->
<div class="form-group label-floating">
<label class="control-label" for="email">Email</label>
<input class="form-control" id="email" type="email" name="email" required
data-error="Please enter your Email">
<div class="help-block with-errors"></div>
</div>
<!-- Subject -->
<div class="form-group label-floating">
<label class="control-label">Subject</label>
<input class="form-control" id="msg_subject" type="text" name="subject" required
data-error="Please enter your message subject">
<div class="help-block with-errors"></div>
</div>
<!-- Message -->
<div class="form-group label-floating">
<label for="message" class="control-label">Message</label>
<textarea class="form-control" rows="3" id="message" name="message" required
data-error="Write your message"></textarea>
<div class="help-block with-errors"></div>
</div>
<!-- Form Submit -->
<div class="form-submit mt-5">
<button class="btn btn-common" type="reset" id="form-submit"><i
class="material-icons mdi mdi-message-outline"></i> Send Message</button>
<div id="msgSubmit" class="h3 text-center hidden"></div>
<div class="clearfix"></div>
</div>
</form>
</div>
</div>
</section>
</div>
</div>
</div>
<!-- Footer -->
<footer class="container-fluid center">
<i class="fa fa-facebook-square" aria-hidden="false"></i>
<i class="fa fa-spotify" aria-hidden="false"></i>
<i class="fa fa-twitter-square" aria-hidden="false"></i>
<i class="fa fa-instagram" aria-hidden="false"></i>
</footer>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Bootstrap JS -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</body>
</html>