-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (48 loc) · 1.3 KB
/
index.html
File metadata and controls
54 lines (48 loc) · 1.3 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
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,width=device-width">
<title>Target Indicator Demo</title>
<link rel="stylesheet" type="text/css" href="style.css">
</link>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
</head>
<body>
<div class="panel">
<div class="panel__header">
<p>Target Indicator Demo</p>
</div>
<div class="panel__body">
<div class="panel__body_error">
<h1>Error</h1>
</div>
<div class="panel__body_content">
<div class="content__main">
<p class="content__main_reached">Reached:</p>
<div class="progressDiv">
<div class="progressDiv__progress">
<div class="progressDiv__arrow-up">
<p class="progressDiv__arrow-up_money">$0.00</p>
</div>
</div>
</div>
<div class="content__main_target">
<div class="target__head">
<p>Target</p>
</div>
<div class="target__price">
<p>$15</p>
</div>
</div>
</div>
<div class="content__description">
<img class="content__description_image" alt="information">
<p class="content__description_info">Wait response from server.</p>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>