-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsubmit.html
96 lines (79 loc) · 3.41 KB
/
submit.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title>weBONK</title>
<!-- Favicon -->
<link rel="shortcut icon" type="image/jpg" href="img/weBONK_Favicon.png"/>
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-S6VJPCLSZD"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-S6VJPCLSZD');
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5JL3HC5');</script>
<!-- End Google Tag Manager -->
</head>
<body class="black white-text">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5JL3HC5"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<header>
<!-- Navigation Bar -->
<div class="navbar-fixed text-orange">
<nav class="grey darken-5" role="navigation">
<div class="nav-wrapper">
<a id="logo-container" href="#" class="brand-logo">
<img class="left-align" src="img/weBONK_Logo-Transparent.png" alt="weBONK logo" class="align-text-top">
</a>
<!-- Normal Nav Bar -->
<ul class="main-nav right hide-on-med-and-down">
<li class="waves-effect"><a href="index.php">HOME</a></li>
<li class="waves-effect"><a class="active" href="#">MEMES</a></li>
</ul>
<!-- Mobile Menu Trigger -->
<a href="#" data-target="nav-mobile" class="sidenav-trigger right">
<i class="material-icons">menu</i>
</a>
</div>
</nav>
</div>
<!-- Mobile Nav Bar -->
<ul id="nav-mobile" class="sidenav right-align">
<li><a class="active" href="#!">HOME</a></li>
<li><a href="memes.php">MEMES</a></li>
</ul>
</header>
<main>
<div class="container">
<div class="section center-align">
<h3 class="center-align">Meme Submission</h3>
</br>
<h5>Easy to use drag-and-drop form coming soon!</h5>
<h5>until then please send your memes to <a class="orange-text" href="mailto: [email protected]">[email protected]</a> to get listed</h5>
<h5>Please include a title, some suggested tags for searching, and your handle if you want to be credited</h5>
</div>
</div>
</main>
<!-- Footer -->
<footer class="page-footer grey darken-5">
</footer>
<!-- Scripts-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
</body>
</html>