-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
89 lines (64 loc) · 3.36 KB
/
contact.html
File metadata and controls
89 lines (64 loc) · 3.36 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
<!DOCTYPE HTML>
<html>
<head>
<title>Maximized Comics</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="HandheldFriendly" content="true">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style/style.css">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
<!-- Load an icon library to show a hamburger menu (bars) on small screens -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
</head>
<body>
<!-- responsive nav bar -->
<div class="topnav" id="myTopnav">
<a href="index.html" class="active"><img class="smalllogo" src="assets/smalllogo.png" alt="Small Logo"> </a>
<a href="comics.html">Comics</a>
<a href="events.html">Events</a>
<a href="contact.html">Contact</a>
<a href="#"><i class="fas fa-shopping-cart"></i></a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<div class="container">
<div class="row">
<div class="social col-lg-12">
<h1><strong>Social Media:</strong></h1>
<a href="https://twitter.com/maximizedcomics" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://instagram.com/mr_maximized" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://facebook.com/maximizedcomics" target="_blank"><i class="fab fa-facebook-f"></i></a>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<iframe src="https://docs.google.com/forms/d/1Ty1MhtCPCO_0PGWvWmf26KK7hV0KjMCRtpF6hea2Poc/viewform?embedded=true" width="800" height="1000" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
</div>
</div>
</div>
</body>
<footer>
© 2018 by Matthew Francis
<a href="https://twitter.com/maximizedcomics" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://facebook.com/maximizedcomics" target="_blank"><i class="fab fa-facebook-square"></i></a>
<a href="https://instagram.com/mr_maximized" target="_blank"><i class="fab fa-instagram"></i></a>
</footer>
</html>