-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 1.11 KB
/
index.html
File metadata and controls
27 lines (27 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="SIMPLE COMMENT BOX USING JAVASCRIPT"/>
<meta name="keywords"content="JAVASCRIPT, SIMPLE COMMENT BOX, Ashaduzzaman,Sazid,Ashaduzzaman (Sazid)"/>
<meta name="author" content="Ashaduzzaman Sazid"/>
<title>Simple Comment Box</title>
<link rel="shortcut icon" href="img/favicon-comment-box.png" type="image/x-icon">
<link rel="stylesheet" href="style/comment-box.css">
</head>
<body>
<h2>SIMPLE COMMENT BOX</h2>
<main id="comment-container">
<section>
<h3>Input letter or word or sentence or text as much as you want. To check the simple comment box ...</h3>
</section>
</main>
<article>
<textarea name="" id="textarea" cols="30" rows="2"></textarea>
<button id="button" type="submit">COMMENT</button>
</article>
<p>ALL RIGHT RESERVED : <a href="http://saziddeveloper.github.io">SAZIDDEVELOPER</a></p>
<script src="js/event.js"></script>
</body>
</html>