-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (38 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Keyword Density Checker</title>
<script src="sript.js" defer></script>
<script src='https://cdn.tailwindcss.com'></script>
<script>tailwind.config = { theme: { extend: { colors: { clifford: '#da373d', } } } }</script>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="logo.svg" type="image/x-icon">
</head>
<body class="bg-blue-400">
<main>
<h1 class="text-center text-3xl m-4">Keyword Density Checker</h1>
<form class="flex justify-center items-center flex-col gap-2 my-8 mx-8 px-8">
<textarea class="border-black border-2 p-1 focus:outline-none " name="input-area" id="input-area"
cols="50" rows="10" title="input-area" placeholder="Input Text Here...."></textarea>
<button class=" border-black border-2 p-2 bg-amber-500 hover:bg-black hover:text-white opacity-100 "
type="button" title="submit-button" onclick="check()">Calculate Density</button>
</form>
<div class="table-wrapper flex justify-center m-3">
<table id="freq_table">
</table>
</div>
<div class="quote flex flex-col gap-1 items-center">
<div class="flex gap-2 flex-col quote_inner mt-3">
<h2 class="text-2xl font-bold">What is good keyword density?</h2>
<p>While there are no hard and fast rules for keyword density beyond always-relevant "don't keyword stuff" advice, many SEOs recommend using approximately 2-4 keyword for every 100 words of copy. That factors in to about 2-4% keyword density.</p>
<p class="font-light italic">-Hubspot</p>
</div>
</div>
</main>
<footer class="p-4 mt-4 text-center bg-blue-600">
<p class="m-0">Made by Hamza Ihsan 👋</p>
</footer>
</body>
</html>