-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (28 loc) · 970 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Phone Number Conversion</title>
<link rel="stylesheet" href="css/phone_conversion.css">
</head>
<body>
<header>
<h1>Phone Number Conversion</h1>
<p>This page takes a (poorly?) formatted phone number and converts it to an accessible phone number with <i>tel:</i> link. This conversion is for phone numbers for the US, Canada, and Qatar only. (Apologies to the rest of Earth.)</p>
</header>
<form id="phone-conversion">
<input type="text" name="phone" id="phone" placeholder="Paste phone number here" autofocus>
<input type="submit" value="Convert!">
</form>
<h2>Results:</h2>
<section>
<ul class="tabs">
<li id="us">US/Canada</li>
<li id="qatar">Qatar</li>
<li id="error">Error</li>
</ul>
<input id="phone-result">
</section>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="js/phone_conversion.js"></script>
</body>
</html>