Skip to content

Commit acaa7dc

Browse files
committed
Add Semantic tags and div's
1 parent 9768eed commit acaa7dc

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

Source-Code/WordCounter/index.html

+22
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,28 @@
77
<link rel="stylesheet" href="style.css">
88
</head>
99
<body>
10+
<div class="container">
11+
<h1>Word Counter</h1>
12+
<textarea placeholder="Enter your text here..."></textarea>
13+
<div class="output row">
14+
<div>Characters: <span id="characterCount">0</span></div>
15+
<div>Words: <span id="wordCount">0</span></div>
16+
</div>
17+
<div class="output row">
18+
<div>Sentences: <span id="sentenceCount">0</span></div>
19+
<div>Paragraphs: <span id="paragraphCount">0</span></div>
20+
</div>
21+
<div class="output row">
22+
<div>Reading Time: <span id="readingTime">0</span></div>
23+
<div id="readability">Show readability score.</div>
24+
</div>
25+
<div class="keywords">
26+
Top keywords:
27+
<ul id="topKeywords">
28+
</ul>
29+
</div>
30+
</div>
31+
1032
<script src="script.js"></script>
1133
</body>
1234
</html>

0 commit comments

Comments
 (0)