-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommentBox.html
More file actions
123 lines (115 loc) · 4.71 KB
/
CommentBox.html
File metadata and controls
123 lines (115 loc) · 4.71 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie-edge">
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<title>Comment Box !</title>
</head>
<body>
<div class="container">
<div class="row comments justify-content-center">
<div class="col-12 mb-3">
<hr>
<h1>Comment Box Like in a Social Media Page</h1>
<hr>
<h2>For the Comment Box:</h2>
<h3>With a <pre><code><textarea></code></pre>tag inside a<pre><code><form></code></pre></h3>
<h4>Styled with some personal css Classes called: <br><code>".CommentForm textarea"</code><br><code>".CommentForm btn"</code><br><code>".CommentForm btn:hover"</code> </h4>
<hr>
<h2>For the Posted Comments:</h2>
<h3>With a tag<pre><code><media></code></pre>Inside another tag<pre><code><media></code></pre></h3>
<h4>Styled with some personal css Classes called:
<br>
<code>".media"</code>
<br>
<code>".media .profile"</code>
<br>
<code>".media .profile span"</code>
<br>
<code>".media .comment"</code>
<br>
<code>".media .buttons"</code>
<br>
<code>".media .buttons a"</code>
</h4>
<hr>
</div>
<div class="col-6">
<form action="" class="CommentForm d-flex justify-content-en flex-wrap">
<textarea name="" id="" cols="" rows="" placeholder="Comment"></textarea>
<button class="btn text-white" type="button">Comment</button>
</form>
<div class="media">
<img src="Blackish.jpeg" width="64" height="64" alt="">
<div class="media-body ml-3">
<p class="profile">Kate Moss <span>7:51, Hoy</span></p>
<p class="comment">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Veniam enim at molestiae, porro, vero repellat.</p>
<div class="buttons text-right">
<a href="#">Reply</a>
<a href="#">Edit</a>
<a href="#">Delete</a>
<div class="media">
<img src="Latinish.jpeg" width="64" height="64" alt="">
<div class="media-body ml-3">
<p class="profile">Jhon Doe <span>7:51, Hoy</span></p>
<p class="comment">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Veniam enim at molestiae, porro, vero repellat.</p>
<div class="buttons text-right">
<a href="#">Reply</a>
<a href="#">Edit</a>
<a href="#">Delete</a>
</div>
</div>
</div>
<div class="media">
<img src="Redish.jpeg" width="64" height="64" alt="">
<div class="media-body ml-3">
<p class="profile">Scarleth Johanson <span>7:51, Hoy</span></p>
<p class="comment">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Veniam enim at molestiae, porro, vero repellat.</p>
<div class="buttons text-right">
<a href="#">Reply</a>
<a href="#">Edit</a>
<a href="#">Delete</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="media">
<img src="Latinish.jpeg" width="64" height="64" alt="">
<div class="media-body ml-3">
<p class="profile">Jhon Doe <span>7:51, Hoy</span></p>
<p class="comment">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Veniam enim at molestiae, porro, vero repellat.</p>
<div class="buttons text-right">
<a href="#">Reply</a>
<a href="#">Edit</a>
<a href="#">Delete</a>
</div>
</div>
</div>
<div class="media">
<img src="Redish.jpeg" width="64" height="64" alt="">
<div class="media-body ml-3">
<p class="profile">Scarleth Johanson <span>7:51, Hoy</span></p>
<p class="comment">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Veniam enim at molestiae, porro, vero repellat.</p>
<div class="buttons text-right">
<a href="#">Reply</a>
<a href="#">Edit</a>
<a href="#">Delete</a>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>