-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
38 lines (36 loc) · 924 Bytes
/
main.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Budgetty</title>
<script src= 'jquery.js'>
</script>
<link rel="stylesheet" src = "custom.css">
<style>
body{
background-color: black;
}
h2, h1, h3{
text-align: center;
font-family: Arial, Helvetica, sans-serif;
color:gold;
}
.spend{
background-color: gold;
padding:3px;
}
</style>
</head>
<body>
<h1> Budgetty</h1>
<h2>Total Spend <span id="total"> 0</span> </h2>
<h2>Limit: <span id="limit"> </span></h2>
<h3> Enter Amount </h3>
<input type="text" id="amount"/>
<input type="submit" id="spendAmount" value="Spend" class="spend">
<script src= 'budgetty.js'>
</script>
</body>
</html>