-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (41 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Neumorphic Ui 2</title>
<link rel= "stylesheet" href= "https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css" >
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap" rel="stylesheet">
<link rel="icon" href="https://www.icodethis.com/favicon.ico">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="filter-widget">
<div class="filter-header">
<h3 class="filter-title">Filters</h3>
<button class="btn-primary btn-done">Done</button>
</div>
<div class="filter-body">
<input type="radio" name="filters" id="date">
<label for="data">Date</label>
<input type="radio" name="filters" id="amount">
<label for="amount">Amount</label>
<input type="radio" name="filters" id="status">
<label for="status">Status</label>
<input type="radio" name="filters" id="method">
<label for="method">Payment method</label>
</div>
</div>
<button class="btn btn-add">Add new</button>
<button class="btn btn-export">Export</button>
<div class="certificate-widget">
<i class="certificate las la-certificate"></i>
<p class="certificate-text">You don't have any certificates.</p>
<button class="btn-primary btn-learn-more">Learn more</button>
</div>
</div>
</body>
</html>