-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>Telephone Number Validator</title>
</head>
<body>
<h2>freeCodeCamp Logo
<img
class="freecodecamp_logo"
src="./codecamp.png"
alt="freeCodeCamp Logo"
/>
</h2>
<h1>Telephone Number Validator</h1>
<form>
<div class="small_circle">
</div>
<div class="container">
<p>Enter a Phone Number:</p>
<input type="text" name="roman_numeral" id="user-input" />
<p id="results-div"></p>
</div>
<div class="button_div">
<button id="check-btn">Check</button>
<button id="clear-btn">Clear</button>
</div>
</form>
<script src="script.js" defer></script>
</body>
</html>
</html>