Created
January 25, 2022 14:11
-
-
Save JWPapi/e10d1cd5bde6e98e5eba9d43e5e22c01 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<button class="CTA hover:bg-gold-light focus:bg-gold-light bg-gold text-black mt-8 py-4 px-16 text-xl md:text-3xl font-bold uppercase font-bold mb-4 rounded inline-block mx-auto drop-shadow-lg"> | |
SIGN ME UP | |
</button> | |
<?php | |
class myTheme { | |
public static function button($size,$text): string { | |
return '<button class="CTA hover:bg-gold-light focus:bg-gold-light bg-gold text-black mt-8 py-4 px-16 text-xl md:text-3xl font-bold uppercase font-bold mb-4 rounded inline-block mx-auto drop-shadow-lg"> | |
SIGN ME UP | |
</button>'; | |
} | |
} | |
?> | |
<?=MYTHEME::button('large','SIGN ME UP'); ?> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment