-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (67 loc) · 2.57 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Apna-Gallla</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section>
<nav class="navbar">
<div class="logo">CashFlo</div> <div class="shortlink"><a href= "#app" class="white">Go to CashFlo</a></div>
</nav>
</section>
<section class="home">
<div class="intro">
WELCOME TO YOUR OWN DIGITAL CASHFLO
<div class="rect"></div>
<div>
<a href = "#app"><button type="button" class="navbutton">Go to CashFlo</button></a>
</div>
</div>
<div class="imageshall">
<img src="iconmonstr-currency-25.svg" alt="Rupees" class="image">
<div class="circle"></div>
</div>
</section>
<section class="area" id="app">
<section class="inbox">
<div class = "form">
<input type="number" id="tprice" class="inp" name="Total Amount" required>
<label for="Total Amount" class="label-name">
<span class="content-name">Total Amount</span>
</label>
</div>
<div class="form">
<input type="number" id="paid" class="inp" name="Paid Amount" required>
<label for="Paid Amount" class="label-name">
<span class="content-name">Paid Amount</span>
</label>
</div>
<button type = "button" id="mutton" onclick="errors(document.getElementById('tprice').value,document.getElementById('paid').value)">Submit</button>
<small class="error"></small>
<small class="leftamt"></small>
</section>
<section class="noteBlock"></section>
</section>
<footer class="foot">
<div class="logof">CashFlo</div>
<div class = "links">
<a href="https://github.com/TusharMukherjee">
<img src="iconmonstr-github-3.svg" alt="Github" class="svglink">
</a>
<a href="https://twitter.com/tusharl0?s=08">
<img src="twitter.svg" alt="Twitter" class="svglink">
</a>
<a href="https://www.linkedin.com/in/tushar-mukherjee-3a3a60166/">
<img src="linkedin-logo.svg" alt="Linkedin" class="svglink">
</a>
<a href="https://www.instagram.com/tusharl0?r=nametag">
<img src="instagram.svg" alt="Instagram" class="svglink">
</a>
</div>
</footer>
<script src="power.js" type="text/javascript"></script>
</body>
</html>