-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (29 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>XMeme</title>
<meta charset="utf-8">
<meta name="Meme-stream app" content="A simple meme streaming application">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Raleway&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="top-component-fixed">
<h1>XMeme - Meme Streamer</h1>
<p class="post-meme-header">Post a meme</p>
<form class="post-meme">
<input class="form-field form-field-name" type="text" placeholder="Your name" maxlength="250" required>
<input class="form-field form-field-url" type="text" placeholder="URL of the image" required>
<textarea class="form-field form-field-caption" placeholder="Caption for the image" required></textarea>
<input class="form-submit" type="submit">
</form>
</div>
<div class="memes-display">
<h2>Memes</h2>
<hr>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>