-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path5c.html
More file actions
47 lines (46 loc) · 1.07 KB
/
5c.html
File metadata and controls
47 lines (46 loc) · 1.07 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
<!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="heading">HTML CSS Course</P>
<p class="des">Beginner to Pro</p>
<p class="details"> in this course we'll learn the skills you need to become a developer</p>
<button class="started">Get Started</button>
<style>
.heading{
font-family: Verdana;
font-weight: bold;
margin-bottom: 5px;
}
.des{
color:grey;
font-family: Verdana;
font-size: 13px;
margin-top: 0px;
margin-bottom: 10px;
}
.details{
width:230px;
color:black;
font-family: Verdana;
font-size:13px;
font-weight: bold;
}
.started{
background-color: green;
color: white;
padding-left: 16px;
padding-right: 16px;
padding-top: 8px;
padding-bottom: 8px;
border:none;
cursor:pointer;
border-radius: 0.2cm;
}
</style>
</body>
</html>