-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5b.html
52 lines (47 loc) · 903 Bytes
/
5b.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
<p class="title">
html CSS course
</p>
<p class="subtitle">
beginner to pro
</p>
<p class="content">
In this course, we'll learn the skills you need to become a developer.
</p>
<button class="button">
Get Started
</button>
<p class="link">
<a href="https://www.youtube.com/"target="_blank">
Learn more >
</a
</p>
<style>
p{ font-family:Verdana;
margin-top:0px;
margin-bottom:0;}
.title{font-weight:bold;
font-size:20px;
margin-bottom: 3px;
}
.subtitle{
color:rgb(100, 100, 100);
margin-bottom:20px;
}
.content{ margin-top:9px;
margin-bottom:20px;
width:300px;
line-height:19px;}
.button{background-color:green;
border-radius:10px;
color:white;
font-size:15px;
height:30px;
width:120px;
border:none;
cursor:pointer;
margin-bottom:20px;}
.link{color:rgb(58, 108, 199);
text-decoration: underline;
cursor:pointer;
}
</style>