-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Commenting System</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500" rel="stylesheet">
<link href="https://unpkg.com/ionicons@4.2.5/dist/css/ionicons.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h3>Thread One</h3>
<div id="thread1"></div>
<hr>
<h3>Thread Two</h3>
<div id="thread2"></div>
<!--
<div class="start-comments">
<div class="input-comment-box">
<div class="user-avatar"></div>
<div class="input-comment" contenteditable="true">sad</div>
<div class="input-comment-box-actions">
<input type="text" placeholder="Name" class="form-control">
<input type="text" placeholder="Username" class="form-control">
<button type="button" class="btn btn-default">Submit</button>
</div>
</div>
</div>
<div class="data-comments">
<div class="comment-wrapper">
<div class="user-avatar"></div>
<div class="comment-header">
<div class="comment-header-name">Vikas Verma</div>
<div class="comment-header-username">audrey</div>
<div class="comment-header-timestamp">1 sec ago</div>
</div>
<div class="comment-content">
This is my first comment.
</div>
<div class="comment-footer">
<div class="comment-footer-actions">
<button type="button" class="btn">upvote</button>
<button type="button" class="btn">downvote</button>
<button type="button" class="btn">reply</button>
</div>
<div class="comment-footer-input">
<div class="input-comment-box">
<div class="user-avatar"></div>
<div class="input-comment" contenteditable="true">sad</div>
<div class="input-comment-box-actions">
<input type="text" placeholder="Name" class="form-control">
<input type="text" placeholder="Username" class="form-control">
<button type="button" class="btn btn-default">Submit</button>
</div>
</div>
</div>
</div>
<div class="comment-children"></div>
</div>
</div>-->
<script src="./main.js"></script>
</body>
</html>