-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (62 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bankito</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="d-content">
<div class="d-numbers">
<svg viewBox="0 0 85 16">
<text x="0" y="15">2</text>
<text x="23%" y="15">2</text>
</svg>
<svg viewBox="0 0 85 17">
<text x="12%" y="15">7</text>
<text x="33%" y="15">8</text>
</svg>
</div>
<div class="pills">
<div class="d-row first-row">
<div class="pill">
<div class="bubbles">
<div class="bubble">
<img src="img/bubble.png" alt="bubble">
</div>
</div>
<img class="wiggle" src="img/pill1.png" alt="pill"/>
</div>
<div class="pill">
<div class="bubbles">
<div class="bubble">
<img src="img/bubble.png" alt="bubble">
</div>
</div>
<img class="wiggle" src="img/pill2.png" alt="pill"/>
</div>
</div>
<div class="d-row second-row">
<div class="pill">
<div class="bubbles">
<div class="bubble">
<img src="img/bubble.png" alt="bubble">
</div>
</div>
<img class="wiggle" src="img/pill3.png" alt="pill"/>
</div>
<div class="pill">
<div class="bubbles">
<div class="bubble">
<img src="img/bubble.png" alt="bubble">
</div>
</div>
<img class="wiggle" src="img/pill4.png" alt="pill"/>
</div>
</div>
</div>
</div>
<script src="script.js" type="text/javascript"></script>
</body>
</html>