-
Notifications
You must be signed in to change notification settings - Fork 0
/
10_prac.html
51 lines (45 loc) · 950 Bytes
/
10_prac.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
<!DOCTYPE html>
<html>
<head>
<title>Practice 10</title>
<style>
.button1 {
background-color: rgb(250, 230, 102);
color: black;
font-size: 17px;
padding: 9px 20px;
width: 200px;
border: none;
border-radius: 24px;
}
.button2 {
background-color: black;
color: white;
border: none;
border-radius: 5px;
width: 120px;
padding: 12px 15px;
font-size: 14px;
margin-left: 10px;
}
.button3 {
background-color: rgb(233, 232, 232);
color: black;
padding: 12px 5px;
width: 155px;
border: none;
border-radius: 5px;
font-size: 14px;
font-weight: bold;
margin-left: 22px;
}
</style>
</head>
<body>
<button class="button1">Add to Cart</button>
<button class="button2">Request now </button>
<button class="button3">Schedule for later</button>
<script>
</script>
</body>
</html>