-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay2.html
143 lines (130 loc) · 3.33 KB
/
Day2.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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<button class="button-uber">Request now</button>
<style>
.button-uber {
background-color: black;
color: white;
padding: 10px 20px;
border: 1px solid white;
cursor: pointer;
display: inline-block;
margin: 10px;
}
</style>
<br><br>
<button class="button-amazon">Add to Cart</button>
<style>
.button-amazon {
background-color: rgb(255, 216, 20);
color: black;
padding: 12px 42px;
border: 1px solid;
border-radius: 30px;
cursor: pointer;
display: inline-block;
margin: 10px;
}
</style>
<br><br>
<button class="button-github">Sign up</button>
<style>
.button-github {
background-color: rgb(46, 164, 79);
color: white;
padding: 12px 24px;
border: none;
border-radius: 5px;
cursor: pointer;
display: inline-block;
margin: 10px;
}
</style>
<br><br>
<button class="button-bootstrap-purple">Get started</button>
<button class="button-bootstrap-grey">Download</button>
<style>
.button-bootstrap-purple {
background-color: rgb(121, 82, 179);
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
display: inline-block;
margin: 10px;
}
.button-bootstrap-grey {
background-color: rgb(108, 117, 125);
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
display: inline-block;
margin: 10px;
}
</style>
<br><br>
<button class="button-linkedin-blue">Apply on company website</button>
<button class="button-linkedin-save">Save</button>
<style>
/* LinkedIn Buttons */
.button-linkedin-blue {
background-color: rgb(10, 102, 194);
color: white;
padding: 10px 20px;
border: 1px solid;
border-radius: 30px;
cursor: pointer;
display: inline-block;
margin: 10px;
}
.button-linkedin-save {
background-color: white;
color: rgb(56, 19, 203);
padding: 10px 20px;
border: 1px solid rgb(55, 12, 210);
border-radius: 30px;
cursor: pointer;
display: inline-block;
margin: 10px;
}
</style>
<br><br>
<a href="https://www.amazon.com" target="_blank">Back to Amazon</a>
<h1>Nike Black Running Shoes</h1>
<h2>$39 - in stock.</h2>
<h4>Free delivery tomorrow.</h4>
<button class="button-add-cart">Add to Cart</button>
<button class="button-buy-now">Buy now</button>
<style>
h1 {
color: rgb(0, 113, 133);
font-size: 24px;
margin-bottom: 0;
}
h2 {
color: rgb(0, 118, 0);
font-weight: bold;
margin-bottom: 0;
}
h4 {
font-size: 16px;
margin-bottom: 0;
}
.button-add-cart {
background-color: rgb(255, 216, 20);
color: black;
padding: 10px 20px;
border: none;
border-radius: 30px;
cursor: pointer;
margin-top: 10px;
}
.button-buy-now {
background-color: rgb(255, 164, 28);
color: black;
padding: 10px 20px;
border-radius: 30px;
border: none;
cursor: pointer;
margin-top: 10px;
}
</style>