-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2a.html
More file actions
79 lines (79 loc) · 1.64 KB
/
2a.html
File metadata and controls
79 lines (79 loc) · 1.64 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<button class="uber"> Request now</button>
<button class="amazon">Add to Cart</button>
<button class="github">Sign up</button>
<button class="bootstrap">Get started</button>
<button class="bootstrap1">Download</button>
<button class="linkedin">Apply on company website</button>
<button class="linkedin1">Save</button>
<style>
.uber{
background-color:black;
color:white;
height:34px;
width:103px;
border:solid;
cursor:pointer;
}
.amazon{
background-color:rgb(255,216,20);
height:34px;
width:155px;
border-radius:18px;
cursor:pointer;
border-color:rgb(255,216,20);
border:none;
font-weight:bold;
}
.github{
background-color:rgb(46,164,79);
color:white;
height:34px;
width:78px;
border-radius:0.2cm;
border-color:rgb(46,164,79);
cursor:pointer;
border:none;
font-weight:bold;
}
.bootstrap{
background-color:rgb(121,82,179);
color:white;
height:34px;
width:108px;
border-radius:0.1cm;
border:none;
cursor:pointer;
font-weight:bold;
}
.bootstrap1{
background-color:white;
color:rgb(108,117,125);
height:34px;
width:108px;
border-radius:0.1cm;
cursor:pointer;
border-width:1px;
font-weight:bold;
}
.linkedin{
background-color:rgb(10, 102, 194);
color:white;
height:34px;
width:200px;
border-radius:18px;
border:none;
cursor:pointer;
font-weight:bold;
}
.linkedin1{
background-color:white;
color:rgb(10, 102, 194);
height:34px;
width:78px;
border-radius:0.1cm;
border:solid;
border-width:1px;
cursor:pointer;
font-weight:bold;
}
</style>