forked from abba-m/functionAddComma
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (26 loc) · 662 Bytes
/
index.html
File metadata and controls
27 lines (26 loc) · 662 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
input {
line-height: 1.8rem;
border-radius: 5px;
font-size: 1.5rem;
border: 1px solid black;
}
#output {
font-size: 1.5rem;
font-weight: 500;
font-family: monospace;
}
</style>
<title>functionAddComma</title>
</head>
<body>
<input type="text" name="input" placeholder="Enter number here" id="input">
<h3 id="output"></h3>
<script src="js/app.js"></script>
</body>
</html>