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
<form name="contact" netlify netlify-honeypot="bot-field" hidden> | |
<input type="text" name="name" /> | |
<input type="email" name="email" /> | |
<textarea name="message"></textarea> | |
</form> |
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
<form name="contact" method="post"> | |
<input type="hidden" name="form-name" value="contact" /> | |
<label for="name">Name</label> | |
<input type="text" name="name" placeholder="Your name.." /> | |
<label for="email">Email</label> | |
<input type="email" name="email" placeholder="Your email.." /> | |
<label for="message">Message</label> | |
<textarea | |
name="message" | |
placeholder="Write message.."/ |
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
/* FONT_NAME = Your font name, i.e. Arial */ | |
/* PATH_TO_YOUR_FILE = The relative path to your font from index.css */ | |
/* Note: Most of the Google fonts I've seen are .ttf which is the 'truetype' format */ | |
@font-face { | |
font-family: 'FONT_NAME'; | |
src: local('FONT_NAME'), | |
url('PATH_TO_YOUR_FILE') format('truetype'); | |
} |