-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path9d.html
43 lines (37 loc) · 809 Bytes
/
9d.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>Document</title>
<style>
.background{
display:inline-block;
background-color: rgb(29, 29, 28);
height:75px;
}
.youtube,.add{
margin-left:10px;
font-family:arial;
}
.youtube{
margin-top:10px;
font-weight: bold;
color:white;
margin-bottom:0px;
}
.add{
width:275px;
margin-top:5px;
color:rgb(108, 108, 108);
font-size:12px;
}
</style>
</head>
<body>
<div class="background">
<p class="youtube"> Install YouTube Music </p>
<p class="add">Add Youtube Music to your desktop for quick and easy access</p>
</div>
</body>
</html>