-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Length Teller</title>
<meta property="og:title" content="Length Teller">
<meta property="og:site_name" content="Length Teller">
<meta property="og:description" content="Length Teller is a simple web tool">
<meta property="og:url" content="https://cyber-programer.github.io/LengthTeller/">
<meta name="description" content="Length Teller is a simple web tool that allows you to determine the length of text entered into a textbox.">
<meta name="keywords" content="cyber programer, cyber-programer , Lenght , teller , Length Teller, cyber programer github, cyber programer web">
<meta name="author" content="root_lovs">
<link rel="stylesheet" href="style.css">
</head>
<body>
<section>
<div class="main">
<h1>Length Teller</h1>
<div class="content">
<label for="text">Enter Your Text:</label>
<textarea name="inp" id="inpt" placeholder="you text hear...."></textarea>
</div>
<button onclick="run()">Tell Lenght</button>
<p id="result"></p>
</div>
</section>
<script src="s.js"></script>
</body>
</html>