-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (67 loc) · 2.45 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>meme master</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="row header-row">
<div class="column w-50" id="left-column">
<img src="img/logo.png" alt="master meme: wordart title art" id="wordart-title"></a>
</div>
<div class="column w-30" id="middle-column">
<p>Tired of trite content? Me too.</p>
<p>Sick of scrolling without a single chuckle? Same.</p>
<p>Enter your chaotic paradise, Meme Master. </p>
<p>A site created to compile and organize niche memes.</p>
</div>
<div class="column w-20 text-center" id="right-column">Welcome to the <br> Meme-llenium</div>
</div>
<div class="row main-content">
<div class="column w-80">
<div class="row card-container" id="cards">
</div>
</div>
<div class="column sidebar w-20">
<div class="sidebar-content">
<div class="row">
<button id="add-meme" class="primary text-center w-100">Contribute to the Chaos</button>
</div>
<div class="row">
<div class="column trending text-center" id="trending">
<h3>Lookin' for a quick fix?</h3>
<p>Despiration is the <br> ~ mother of innovation ~</p>
<p>Memes to get your juices flowing</p>
</div>
</div>
</div>
</div>
</div>
<div id="open-modal" class="modal-window">
<div>
<a href="#" title="Close" class="modal-close">×</a>
<h5>Meme Submission</h5>
<form name="meme_submission_form">
<div><label>Title </label>
<input type="text" name="title_text" id="title-text" autocomplete="off">
</div>
<div><label>Image URL </label>
<input type="url" name="image_url" id="image-url" autocomplete="off">
</div>
<div><label>Tags (comma seperated) </label>
<input type="text" name="tags_text" id="tags-text" autocomplete="off">
</div>
<div><label>Source </label>
<input type="text" name="source_text" id="source-text" autocomplete="off">
</div>
<div id="preview"></div>
<button id="submit-meme" class="primary text-center w-100" type="submit">Submit</button>
</form>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>