-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (49 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A simple live micro-blogging site with emotions."
/>
<title>Emotive Blog</title>
<link href="./app/res/favicon.ico" rel="icon" type="image/png" />
<!-- CSS stylesheets -->
<link rel="stylesheet" href="./app/stylesheets/style.css" />
<!-- JS scripts -->
<script src="./app/app.js" type="module" defer></script>
</head>
<body>
<header class="container header__container">
<a href="./">
<h1 class="header-title">Emotive Blog</h1>
</a>
</header>
<main class="container blog__container">
<form class="blog__entry-form" id="entry-form" method="post">
<div class="form-control entry__emotions">
<div class="entry_emotions-label">Choose emotion:</div>
<div class="entry__emotions-list"></div>
</div>
<div class="form-control entry__content">
<input
type="text"
name="content"
placeholder="Message"
autocomplete="off"
/>
<input type="submit" id="submit-entry" value="Post" />
</div>
</form>
<div class="blog__entries"></div>
</main>
<footer class="container footer__container">
<small>Made by Richard Szilagyi</small>
</footer>
<div class="top-left">
<a href="emoticon.html">Add New Emoticon</a>
</div>
</body>
</html>