-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDonate.html
More file actions
150 lines (123 loc) · 2.49 KB
/
Copy pathDonate.html
File metadata and controls
150 lines (123 loc) · 2.49 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
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
144
145
146
147
148
149
150
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 30px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #4CAF50;
color: white;
}
img {
border-radius: 4.1%;
}
* {
box-sizing: border-box;
}
.column {
float: left;
width: 28%;
padding: 5px;
}
.column1 {
float: left;
width: 22%;
padding: 5px;
}
/* Clearfix (clear floats) */
.row::after {
content: "";
clear: both;
display: table;
}
.button {
display: inline-block;
border-radius: 4px;
background-color: LightSalmon;
border: none;
color: #FFFFFF;
text-align: center;
font-size: 28px;
padding: 20px;
width: 200px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
}
.button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.button span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.button:hover span {
padding-right: 25px;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
</style>
</head>
<body>
<div class="topnav">
<a class="active" href="BearyHome.html">BearyPro</a>
<a href="JavaBasics.html">AP Computer Science A</a>
<a href="CompetitiveProgramming.html">Competitive Programming</a>
<a href="Donate.html">Donate ❤</a>
</div>
<br>
<div class="row">
<div class="column">
        <img src="Images/arrow.png" alt="arrow" style="300px;height:300px;">
</div>
<div class="column">
<img src="Images/Donate1.png" alt="donate" style="1050px;height:500px;">
</div>
</div>
<div class="row">
<div class="column1">
<form action="CompetitiveProgramming.html">
<button class = "button" style = "float: right; position:relative; left:-35px; top: 20px;"><span>GoFundMe Donation</span></button>
</form>
<br>
<br>
<br>
<form action="CompetitiveProgramming.html">
<button class="button" style= "float: right; position:relative; left:-35px; top: 20px;"><span>Patreon Donation</span></button>
</form>
</div>
<div class="column1">
<center><img src="Images/support.png" alt="arrow" style="1050px;height:500px;"></center>
</div>
</div>
</center>
</body>
</html>