+ 5
How do you hook up a gmail letter code to gmail
I'm making a business website for my mother and her fiancè and for my contact is page idk how to hook it up to actual gmail. And also can their be 2 body tags in a html system or do I need to separate with <div></div> https://code.sololearn.com/WnVhqEoNwD3F/?ref=app
6 ответов
+ 3
*You might want to have a look at HTML's mailto feature: https://www.rapidtables.com/web/html/mailto.html
You're right, you can only have one body tag, break it up with divs :)
EDIT: on second look, you're better off using a form, follow this tutorial: http://reusableforms.com/d/o5/html5-contact-form-send-email
+ 25
About having 2 body tags in your HTML files.
NO you should not have multiple "bodies" or "heads" in your HTML documents. Everything else must be "sandwiched" between their opening and closing tags.
Using div tags is fine. Learn more about other HTML elements like forms.
+ 4
Devisfun I don't know how to hook it up to send it to the user I want it to
+ 4
Ok
+ 3
Yeah I know now. I put it in notepad ++ and it didn't work
+ 1
Please see my edited comment above, I've provided a link to a guide for you to follow.