-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path5f.html
More file actions
44 lines (41 loc) · 854 Bytes
/
5f.html
File metadata and controls
44 lines (41 loc) · 854 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p class="num">1,049.61 <span class="usd">USD</span></p>
<p class="today">+18.05 (1.75%) today</p>
<p class="after">After hours 1,048.00 <span class="dec">-1.61 (0.15%)</span></p>
<style>
p{
font-family: arial;
margin-top: 0px;
margin-bottom: 0px;
}
.num{
font-size: 35px;
}
.usd{
font-size: 18px;
font-weight: lighter;
color: grey;
}
.today{
margin-top: 8px;
font-size: 18px;
color:rgb(73, 118, 77);
}
.after{
margin-top:8px;
font-size:18px;
color:rgb(57, 56, 56);
}
.dec{
color:rgb(206, 53, 50);
}
</style>
</body>
</html>