2024-08-16 04:50:12 +00:00
<!DOCTYPE html>
< html >
< head >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width" >
2025-02-14 01:07:18 +00:00
< title > Quotes - FP650< / title >
< meta name = "description" content = "Shit I've said that everyone is allowed to quote whenever" / >
< meta property = "og:title" content = "Quotes - FP650" / >
< meta property = "og:type" content = "website" / >
< meta property = "og:image" content = "https://firepup650.com/favicon.ico" / >
< meta property = "og:image:height" content = "512" / >
< meta property = "og:image:width" content = "512" / >
< meta property = "og:url" content = "https://firepup650.com/quotes" / >
< meta property = "og:description" content = "Shit I've said that everyone is allowed to quote whenever" / >
< meta property = "og:site_name" content = "Firepup650's Site" / >
< meta property = "og:locale" content = "en_US" >
< meta property = "og:logo" content = "https://firepup650.com/favicon.ico" / >
2024-10-04 12:26:10 +00:00
< link href = "/styles/style.css" rel = "stylesheet" type = "text/css" / >
2024-08-16 04:50:12 +00:00
< link href = "/styles/bounce.css" rel = "stylesheet" type = "text/css" / >
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
2024-09-30 18:51:26 +00:00
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/quotes"></script> -->
2024-08-16 04:50:12 +00:00
< / head >
< body >
< h5 hidden id = 'Maintenance' class = "center" > < / h5 >
< span class = "center" >
< h3 class = "force-color" > Firepup Quotes to be freely reused as needed by anyone for any reason< / h3 >
< span id = "no-stop" class = "force-color" > I can't stop you< / span > < button class = "cyan copy-button" onclick = "copy('no-stop')" > Copy< / button > < br / >
< span id = "access" class = "force-color" > I'll basically never say no to more access to more things... or more access to the same things< / span > < button class = "cyan copy-button" onclick = "copy('access')" > Copy< / button > < br / >
2024-09-23 14:44:07 +00:00
< span id = "vvcccblhvgjdrhcdvbihnhjddjgvlcuvfbvcfinbllic" class = "force-color" > vvcccblhvgjdikttkluehddnjbdhrrkvjhkfeiigbrct< / span > < button class = "cyan copy-button" onclick = "copy('vvcccblhvgjdrhcdvbihnhjddjgvlcuvfbvcfinbllic')" > Copy< / button > < br / >
2024-08-16 04:50:12 +00:00
< / span >
2024-10-04 12:26:10 +00:00
< script src = "/scripts/script.js" > < / script >
2024-08-16 04:50:12 +00:00
<!-- Modified from https://www.geeksforgeeks.org/how - to - create - copy - to - clipboard - button/ /! -->
< script >
function copy(element) {
const elemText = document.getElementById(element).innerText
let text = `> ${elemText}
2025-02-11 03:24:30 +00:00
~ Firepup Sixfifty ([Source](https://firepup650.com/quotes#:~:text=${encodeURIComponent(elemText).replaceAll("'", '%27')}))`
2024-08-16 04:50:12 +00:00
navigator.clipboard.writeText(text);
}
< / script >
<!-- End Modified GeeksforGeeks code /! -->
<!-- Modified from https://codepen.io/nrrrdcore/pen/XbZBpq /! -->
< style >
.copy-button {
cursor: pointer;
& :before {
content: '';
display: none;
position: absolute;
z-index: 9998;
top: 35px;
left: 15px;
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid rgba(0,0,0,.72);
}
& :after {
content: 'Copy to Clipboard';
display: none;
position: absolute;
z-index: 9999;
top: 30px;
left: 0px;
width: 114px;
height: 36px;
color: #fff;
font-size: 10px;
line-height: 36px;
text-align: center;
border-radius: 3px;
}
& :hover {
& :before, & :after {
display: block;
}
}
& :active, & :focus {
& :after {
content: 'Copied!';
}
}
}
< / style >
<!-- End Modified codepen code (Julie Horvath) /! -->
< / body >
< / html >