-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (36 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Telephone Number Validator</title>
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
</head>
<body>
<h3>Telephone Number Validator</h3>
<h1>freeCodeCamp</h1>
<div class="dots">...</div>
<div class="credits">Telephone video by
<a href="https://dribbble.com/NerminMuminovic">Nermin Muminovic on Dribbble</a>
</div>
<main>
<video autoplay loop src="/assets/videos/telephone.mp4"></video>
<section>
<h2>Enter a phone number</h2>
<p>Insert a valid US phone number</p>
<div id="input-container">
<img class="flag" src="assets/images/eua-flag.png" alt="">
<input id="user-input" type="text">
</div>
<div id="buttons">
<button id="check-btn" class="button"><img class="icon check" src="assets/images/check.svg"
alt="">Check</button>
<button id="clear-btn" class="button"><img class="icon clear" src="assets/images/x.svg"> Clear</button>
</div>
<div id="results-div">
</div>
</section>
</main>
</body>
</html>