I'm still working on a contact page, I was wonder if anyone has any advice for me? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

I'm still working on a contact page, I was wonder if anyone has any advice for me?

https://code.sololearn.com/WPv5AcUQOueN/?ref=app

30th Mar 2018, 6:46 PM
Kyle Gillingham
3 Answers
+ 2
I love the look of it. Has a smooth look and I like the shadow boxing you did. My first advice is to add labels so users know which input box is for what. Also, in your form section of your HTML, move the closing </div> tag inside of the form so it's nested properly. It shouldn't affect your form's functionality, but it's better to properly organize your code and nest things properly. What are your plans for the backend?
30th Mar 2018, 6:53 PM
Fata1 Err0r
Fata1 Err0r - avatar
+ 2
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <!-- Form section starts--> <form> <h2>Contact Us</h2> <div class="section"> <input placeholder="name" name="name" type="text" /><br/> <input placeholder="email" name="email" type="email" /><br/> <textarea name="message" placeholder="massage"></textarea> <input type="submit" value="SEND" class="submit" /> </form> </div> <!-- Form section ends --> </body> </html> try this
30th Mar 2018, 6:55 PM
Raj Chhatrala
Raj Chhatrala - avatar
+ 1
Thankyou for the spell check and placeholders. I have a domain with an email...just need to figure out how to put the two together. I have some idea but im only intermediate lvl html, basic css and some js.. i want to learn php and sql so i can have my own data base within my website
30th Mar 2018, 10:39 PM
Kyle Gillingham