-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path5f.html
More file actions
38 lines (37 loc) · 937 Bytes
/
5f.html
File metadata and controls
38 lines (37 loc) · 937 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
<!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="price">1,049.61 <span class="dollar">USD</span></p>
<p class="detail">+18.05(1.75%) today</p>
<p class="before">After hours 1,048.00<span class="after">−1.61(0.15%)</span> </p>
<style>
.price{
font-size: 40px;
font-family: arial;
margin-bottom: 0px;
}
.dollar{
font-size: 20px;
font-weight: bold;
color:grey
}
.detail{
color:green;
margin-top: 0px;
font-size: 20px;
}
.before{
color:grey;
font-weight: bold;
}
.after{
color:rgb(197, 53, 53);
}
</style>
</body>
</html>