forked from MugishaU/Project-1-Journal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
html.html
67 lines (56 loc) · 1.62 KB
/
html.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
<section>
<article id="post">
<h1 id="title">
Title
</h1>
<p id="main">
Main body of post
</p>
<div>
<img id="gif">
</div>
<div id="reactionBar">
<i id="love">love</i>
<h5 id="loveCount">love count</h5>
<i id="clap">clap</i>
<h5 id="clapCount">clap count</h5>
<i id="like">like</i>
<h5 id="likeCount">like count</h5>
</div>
<div id="commentsArea">
<div id="publishedComments">
<p>comment 1</p>
<p>comment 2</p>
<p>comment 3</p>
</div>
<form id="commentForm">
<label id="commentLabel" for="commentInput"></label>
<textarea id="commentInput" name="commentInput">comment textarea</textarea>
<input id="submitComment" type="submit" value="submit">
</form>
</div>
</article>
</section>
<!---->
<section>
<article id="post">
<h1 id="title">
Title
</h1>
<p id="description">
Description
</p>
<div>
<img id="gif">
</div>
<div id="reactionBar"><!--Non-interactive-->
<i id="love">love</i>
<h5 id="loveCount">love count</h5>
<i id="clap">clap</i>
<h5 id="clapCount">clap count</h5>
<i id="like">like</i>
<h5 id="likeCount">like count</h5>
</div>
<a id="postLink"><button>Go to post</button></a>
</article>
</section>