<button>Let's Go !</button>
This file contains hidden or 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
| <body> | |
| <!-- insert Adobe Typekit link here --> | |
| <link href="https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&display=swap" rel="stylesheet"> | |
| <style> | |
| @media screen { | |
| font-family:'interstate-condensed','Avenir Next Condensed','Arial Nova Cond Light','Open Sans Condensed','Arial Narrow',sans-serif; | |
| font-style: normal; | |
| font-weight:400; | |
| a[x-apple-data-detectors] { | |
| font-weight: inherit !important; |
This file contains hidden or 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
| <table id="lwsignature" cellspacing="0" cellpadding="0" border-spacing="0" style="margin:0;padding:0;font-family:'Avenir Next Condensed','Arial Nova Cond Light','Arial Narrow',sans-serif;mso-line-height-rule:exactly;line-height:20px;border-collapse:collapse;-webkit-text-size-adjust:none;"> | |
| <tbody> | |
| <tr style="margin:0;padding:0;"> | |
| <td valign='top' style="width:60px;margin:0;padding:0;vertical-align:top;"> | |
| <a href='https://yourwebsite.com' title="Your Business Name" style="border:none;text-decoration:none;"> | |
| <img moz-do-not-send="true" src="https://via.placeholder.com/120x208.png?text=Your+Logo" alt="Your Business Name" width="60" height="104" style="border:none;width:60px;height:104px;display:block!important;"> | |
| </a> | |
| </td> | |
| <td valign="bottom" style="margin:0;padding:6px 0 0 10px;vertical-align:bottom;font-family:'Avenir Next Condensed','Arial Nova Cond Light','Open Sans Condensed','Arial Narrow',sans-serif;"> | |
| <p style="margin:0;padding:0;color:#000000;fo |
This file contains hidden or 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
| <html xmlns:o="urn:schemas-microsoft-com:office:office" | |
| xmlns:w="urn:schemas-microsoft-com:office:word" | |
| xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" | |
| xmlns="http://www.w3.org/TR/REC-html40"> | |
| <head> | |
| <!-- insert Adobe Typekit link here --> | |
| <link href="https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&display=swap" rel="stylesheet"> | |
| <meta http-equiv='Content-Type' content='text/html; charset=UTF-8' /> | |
| <meta name="format-detection" content="telephone=no"> |
This file contains hidden or 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
| // Import __ from i18n internationalization library | |
| const { __ } = wp.i18n; | |
| // Import registerBlockType() from block building libary | |
| const { registerBlockType } = wp.blocks; | |
| // Import the element creator function (React abstraction layer) | |
| const el = wp.element.createElement; | |
| /** | |
| * Example of a custom SVG path taken from fontastic | |
| */ |
This file contains hidden or 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
| <?php | |
| // Create your SVG library function | |
| // Put this at the bottom of your functions.php file, | |
| // or out of the way wherever you like | |
| function menu_icons($icon){ | |
| // Store your SVGs in an associative array | |
| $svgs = array( | |
| 'microphone' => 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjY0cHgiIGhlaWdodD0iMTAwcHgiIHZpZXdCb3g9IjAgLTIwIDY0IDEyMCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNjQgMTAwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8Zz4NCgk8Zz4NCgkJPHBhdGggZD0iTTYyLDM2LjIxNWgtM2MtMS4xLDAtMiwwLjktMiwyVjUyYzAsNi42ODYtNS4yNjYsMTgtMjUs |
