-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtelephone-number-validator.html
39 lines (36 loc) · 1.29 KB
/
telephone-number-validator.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Telephone number validator</title>
<link rel="icon" type="image/x-icon" href="https://donutparty.top/images/donut.ico">
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="styles/basic-layout.css" />
<link rel="stylesheet" href="styles/telephone-number-validator.css" />
<script src="https://kit.fontawesome.com/c07e0218a9.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<h1>Telephone number validator</h1>
</header>
<main>
<div id="phone">
<div id="island"></div>
<div id="converter">
<label for="user-input">Enter a phone number</label>
<input id="user-input" name="user-input" />
<button id="check-btn">Check</button>
<button id="clear-btn">Clear</button>
</div>
<div id="results-div">
</div>
</div>
</main>
<footer>
<span id="display-mode-button" class="fa-regular fa-sun"></span>
<a href="https://github.com/womzil">Created by womzil</a>
</footer>
<script src="./scripts/darkMode.js"></script>
<script src="./scripts/telephoneNumberValidator.js"></script>
</body>
</html>