Hello please anyone to help me by posting an application form with html without css | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Hello please anyone to help me by posting an application form with html without css

IT'S AN EMERGENCY PLEASE!!!!!!!!

26th Feb 2020, 8:20 AM
Bhreezy Brains
Bhreezy Brains - avatar
12 Answers
+ 2
Please show us your attempt first. If this is an emergency, you can find hundreds of examples by searching on google.
26th Feb 2020, 8:22 AM
Aymane Boukrouh
Aymane Boukrouh - avatar
+ 2
Sorry my friend we can't help on this type of problem. You can take help of Google.
26th Feb 2020, 8:26 AM
A͢J
A͢J - avatar
+ 1
Bhreezy Brains I don't see any problem witt this code, all you need to do is add a submit button. EDIT: Sorry, I was wrong, your code has other mistakes.
26th Feb 2020, 8:27 AM
Aymane Boukrouh
Aymane Boukrouh - avatar
+ 1
Aymane Boukrouh He used head tag many times which is wrong
26th Feb 2020, 8:36 AM
A͢J
A͢J - avatar
+ 1
🅰🅹 - Pʀᴏᴅᴜᴄᴛ Mᴀɴᴀɢᴇʀ oh :/ I didn't actually check the code, I only saw the output 😬 Now that you said it, same goes for body and form as well.
26th Feb 2020, 8:37 AM
Aymane Boukrouh
Aymane Boukrouh - avatar
+ 1
Bhreezy Brains You need to go through html Language again and see the work of each tags. You have used so many head and title tag which is wrong... We put head tag before the body tag. Inside that head tag we put title, style and script tag.
26th Feb 2020, 8:37 AM
A͢J
A͢J - avatar
0
<DOCTYPE html> <html> <head> <title>Forms</title> </head> <body> <form> First name: <input type = "text" name = "first_name" /> <br> <br> <br> Last name: <input type = "text" name = "last_name" /> <br> <br> <br> <head> <title>Password Input Control</title> <br> User ID : <input type = "text" name = "user_id" /> <br> Password: <input type = "password" name = "password" /> </form> <br> <br> <br> <head> <title>Multiple-Line Input Control</title> </head> <body> <form> Description : <br /> <textarea rows = "5" cols = "50" name = "description"> Enter description here... </textarea> </form> </body> <br> <head> <title>Select Box Control</title> </head> <head> <title>Checkbox Control</title> </head> <body> <form> <inpu
26th Feb 2020, 8:25 AM
Bhreezy Brains
Bhreezy Brains - avatar
0
I'm confused saf
26th Feb 2020, 8:26 AM
Bhreezy Brains
Bhreezy Brains - avatar
0
Alright man thanks
26th Feb 2020, 8:43 AM
Bhreezy Brains
Bhreezy Brains - avatar
0
here is a complete form application containing almost all types of form elements you can choose from them (I created it just for training) without css at all : (I will post the code in 2 separated posts with allowed post characters number so you can combine them again in any editor and use them back)
27th Feb 2020, 8:20 PM
Mahmoud Anwar
Mahmoud Anwar - avatar
0
<!DOCTYPE html> <html> <body> <h2 style="color:red; text-align:center;"> This is a form </h2> <form action="" method="post" target="_self" autocomplete="on"> <fieldset> <legend> forms </legend> First name : <br> <input type="text" name="#firstname" placeholder="your first name" style="width:250px;" required autofocus> <br> Last name : <br> <input type="text" name="#lastname" placeholder="your last name" style="width:250px;" required> <br> Email : <br> <input type="text" name="#email" placeholder="email address" style="width:250px;" required> <br> Mobile : <br> <input type="tel" name="#mobile" style="width:250px;" maxlength="11" required> <br> Password : <br> <input type="password" name="#password" style="width:250px;"> <br> Birth Date : <br> <input type="date" name="Bdate"> <br> Gender : <br> <input type="radio" name="gender" value="male" checked>male <br> <input type="radio" name="gender" value="female">female <br> Country : <br> <select name="#country"> <option value="egypt"> egypt </option> <option value="saudia"> saudia </option> </select> <br> Your Skills <small style="color:red;"> (select multiple) </small> : <br> <select name="#skills" size="6" multiple> <option value="HTML"> HTML </option> <option value="CSS"> CSS </option> </select> <br> More Skills <small style="color:red;"> check </small>: <br> <input type="checkbox" name="#photoshop" value="photoshop"> photoshop <input type="checkbox" name="#3dsmax" value="3dsmax"> 3ds max <input type="checkbox" name="#autocad" value="autocad"> autocad <br> Do you have a car ? <br> <input type="radio" name="#car" value="yes"> yes <input type="radio" name="#car" value="no" checked> no <br> Your favorite color : <input type="color" name="#colorid" value="#ff0000" style="width:70px;">
27th Feb 2020, 8:21 PM
Mahmoud Anwar
Mahmoud Anwar - avatar
0
Experience Years : <br> <input type="number" name="#experienceyears" value="1" min="1" max="7"> <br> Expected Salary : <br> <input type="range" name="#salary" min="1000" max="10000"> &nbsp; <br> Your Message ! <br> <textarea name="#message" rows="10" cols="60" placeholder="type your message here !"> </textarea> <br> Portfolio URL : <br> <input type="url" name="#portfolio" style="width:250px;"> <br> Search our website ! <br> <input type="search" name="#mysearch" style="width:255px;"> <br> Upload CV : <br> <input type="file" name="#cv" multiple> <br> <input type="submit" value="send"> <input type="reset"> </fieldset> </form> </body> </html>
27th Feb 2020, 8:22 PM
Mahmoud Anwar
Mahmoud Anwar - avatar