-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (48 loc) · 1.72 KB
/
index.html
File metadata and controls
49 lines (48 loc) · 1.72 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="Abdullah Shalabi">
<title>Split Your Check</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header class="header">
<h1>Split Your Check</h1>
</header>
<div class="main-content"></div>
<div class="check-form">
<div class="form-container">
<input type="text" class="check-input" placeholder="Enter the meal" required autofocus/>
<input type="number" id="amount" class="check-input" placeholder="Total Amount" required/>
<input type="number" id="people" class="check-input" placeholder="Number of People" required/>
<div class="added-item-container">
<!-- Element generated by js -->
</div>
<button type="add" class="add-item-btn">
<i class="fa-solid fa-plus"></i>
Add another Item
</button>
<input type="number" id="vat" class="check-input" placeholder="VAT Percentage"/>
</div>
</div>
<div class="add-item-container">
</div>
<button type="submit" class="check-btn">
<i class="fa-solid fa-calculator"></i>
Calculate
</button>
<div class="result-container">
<div class="result-content">
<!-- Element generated by js -->
</div>
</div>
</div>
</div>
<script src="app.js"></script>
</body>