This repository was archived by the owner on May 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (63 loc) · 2.99 KB
/
index.html
File metadata and controls
83 lines (63 loc) · 2.99 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
<!--
* Copyright 2025 [Tushar Kumar Sahu]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=7,IE=edge,chrome=1">
<meta name="author" content="Tushar Kumar Sahu">
<meta name="description"
content="Validate US phone numbers easily with our online phone number validator. Ensure your phone number is in the correct format for the United States.">
<meta name="keywords"
content="US phone number validator, phone number validation, validate US phone number, phone format checker, US number format">
<meta name="robots" content="index, follow">
<!-- Open Graph Meta Tags (for social sharing) -->
<meta property="og:title" content="Simple Telephone Number Validator web application">
<meta property="og:description" content="Validate US phone numbers easily with our online phone number validator. Ensure your phone number is in the correct format for the United States.">
<meta property="og:image" content="https://root-tester.github.io/Roman-Numeral-Converter/favicon.png"> <!-- Optional image for social sharing -->
<meta property="og:url" content="https://root-tester.github.io/Telephone-Number-Validator/">
<!-- Canonical Tag -->
<link rel="canonical" href="https://root-tester.github.io/Telephone-Number-Validator/">
<script src="main.js"></script>
<link rel="stylesheet" href="index.css">
<link rel="shortcut icon" href="https://root-tester.github.io/Roman-Numeral-Converter/favicon.png" type="image/x-icon">
<title>Telephone Number Validator</title>
</head>
<body>
<main>
<img src="https://root-tester.github.io/Roman-Numeral-Converter/logo.png" alt="The Root Tester" id="logo">
<h1>Telephone Number Validator</h1>
<div id="phone-container">
<div id="phone-header">
<div id="phone-camera"> </div>
</div>
<div id="phone-screen">
<label for="user-input">
Enter a Phone Number:
</label>
<input type="text" id="user-input">
<div id="results-div">
</div>
</div>
<div id="phone-footer">
<button id="check-btn">Check</button>
<button id="clear-btn">Clear</button>
</div>
</div>
</main>
</body>
</html>