-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
125 lines (112 loc) · 5.06 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.png">
<title>Antigone Willis</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/starter-template.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<link href="css/ekko-lightbox.css" rel="stylesheet">
<link href="css/all.min.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
<a class="navbar-brand" href="#">@Nekokokokokok</a>
<a class="navbar-brand" href="https://nekokokokokok.tumblr.com" target="_blank"><i class="fab fa-tumblr"></i></a>
<a class="navbar-brand" href="https://twitter.com/nekokokokokok" target="_blank"><i class="fab fa-twitter"></i></a>
<a class="navbar-brand" href="https://nekokokokokok.tumblr" target="_blank"><i class="fab fa-instagram"></i></a>
<a class="navbar-brand" href="https://nekokokokokok.deviantart.com" target="_blank"><i class="fab fa-deviantart"></i></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link" href="commissions.html">Commission Info</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#">About/Contact<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<script type='text/javascript' src='js/kofiWidget.js'></script><script type='text/javascript'>kofiwidget2.init('Keep me awake', '', 'C0C46X9O');kofiwidget2.draw();</script>
</li>
</ul>
</div>
</nav>
<main role="main" class="container-fluid">
<div class="starter-template"> <h1>About/Contact</h1></div>
<div class="row">
<div class="col-1"></div>
<div class="col-md">
<p>
Feel free to contact me here if you have any questions or business inquiries!
</p>
</div>
<div class="col-1"></div>
<div class="col-md">
<form>
<div class="form-group">
<label for="exampleFormControlInput1">Email address</label>
<input type="email" class="form-control" id="emailInput" placeholder="[email protected]" required>
</div>
<div class="form-group">
<label for="exampleFormControlInput1">Subject</label>
<input type="text" class="form-control" id="subjectInput" placeholder="e.g. commissions, business inquiries, fanmail" required>
</div>
<div class="form-group">
<label for="exampeFormControlTextarea">Your Message</label>
<textarea class="form-control" id="messageInput" rows="3" required></textarea>
</div>
<button id="sendEmail" type="submit" class="btn btn-primary">Send Message!</button>
<span id="sendStatus"></span>
</form>
</div>
<div class="col-1"></div>
</div>
</main><!-- /.container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="assets/js/vendor/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
$(document).on('click', '[data-toggle="lightbox"]', function(event) {
event.preventDefault();
$(this).ekkoLightbox();
});
</script>
<script src="js/ekko-lightbox.min.js"></script>
<script src="js/custom.js"></script>
<script>
// Example starter JavaScript for disabling form submissions if there are invalid fields
(function() {
'use strict';
window.addEventListener('load', function() {
// Fetch all the forms we want to apply custom Bootstrap validation styles to
var forms = document.getElementsByClassName('needs-validation');
// Loop over them and prevent submission
var validation = Array.prototype.filter.call(forms, function(form) {
form.addEventListener('submit', function(event) {
if (form.checkValidity() === false) {
event.preventDefault();
event.stopPropagation();
}
form.classList.add('was-validated');
}, false);
});
}, false);
})();
</script>
</body>
</html>