-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (26 loc) · 985 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 lang="en">
<head>
<meta charset="UTF-8">
<title>QualOperadora</title>
<meta name="keywords" content="aplicação, firefox os, operadora, telefone, web app, nti faccat">
<meta name="description" content="Descubra qual é a operadora de um número de telefone.">
<link rel="stylesheet" href="assets/css/style.min.css">
</head>
<body class="body">
<h1 class="app__name">Qual<span>Operadora</span></h1>
<form id="main__form">
<input type="tel" id="main__form-phone" placeholder="DDD + Número" required maxlength="15">
<button type="submit" id="main__form-submit">Consultar</button>
</form>
<div id="resp" class="transition">
<div id="found">
<p>A operadora é: </p>
<span id="resp-content"></span>
<div id="resp-phone-call"></div>
</div>
<span id="not-found">Não encontramos nenhum registro</span>
</div>
<script type="text/javascript" src="assets/js/app.min.js"></script>
</body>
</html>