generated from Migracode-Barcelona/cyf-blocks-fundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 803 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>CYF Blocks Project</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="">
</head>
<body>
<h1>My CYF Blocks Project</h1>
<!-- in the space below here you should paste the 'Static HTML' from your CYF Blocks project page -->
<ul><p>enter the earnings and expenses to get total</p>
<input id="earning" type="number" >
<button id="add_number">add_number</button>
</ul>
<button id="calculate">calculate</button>
<ul><span id="total"></span></ul>
<!----->
<script src="script.js"></script>
</body>
</html>