Learn HTML forms in 8 minutes 📝

preview_player
Показать описание
HTML forms tutorial example explained

#HTML #forms #tutorial
Рекомендации по теме
Комментарии
Автор

I didn't cover EVERY form input type in this video, but here's most of the common ones:

<!DOCTYPE html>

<html>
<head>
<title>My first website</title>
</head>
<body>

<form action="action_page.php" method="POST">

<div>
<label for="fname">first name:</label>
<input type="text" id="fname" name="fname" placeholder="Spongebob" required>
</div>

<br>

<div>
<label for="lname">last name:</label>
<input type="text" id="lname" name="lname" placeholder="Squarepants" required>
</div>

<br>

<div>
<label for="pass">password:</label>
<input type="password" id="pass" name="pass" maxlength="12" required>
</div>

<br>

<div>
<label for="email">email:</label>
</div>

<br>

<div>
<label for="phone">phone #:</label>
<input type="tel" id="phone" name="phone"
</div>

<br>

<div>
<label
<input type="date" id="bdate" name="bdate">
</div>

<br>

<div>
<label
<input type="number" id="quantity" name="quantity" min="0" max="99" value="1">
</div>

<br>

<div>
<label for="title">title:</label>

<label for="Mr.">Mr.</label>
<input type="radio" id="Mr." name="title" value="Mr.">

<label for="Mrs.">Mrs.</label>
<input type="radio" id="Mrs." name="title" value="Mrs.">

<label for="PhD.">PhD.</label>
<input type="radio" id="PhD." name="title" value="PhD.">
</div>

<br>

<div>
<label
<select id="payment" name="payment">
<option value="visa">visa</option>
<option
<option
</select>
</div>

<br>

<div>
<label
<input type="checkbox" id="subscribe" name="subscribe" min="0" max="99" value="1">
</div>

<br>

<div>
<input type="reset">
</div>

<br>

<div>
<input type="submit">
</div>

</form>

</body>
</html>

BroCodez
Автор

I'm attending a bootcamp and you literally covered all of the requirements needed for my project. Thank you for making this so simple and easy!

avocadoisafruit
Автор

YOU are the best. I finished your HTML course and will now start with CSS. My interest has only gone up by watching your videos. Thanks for everything.

legoholic
Автор

You did well.
Just finished this playlist. Took me 3-4hrs, in one day tho. Was straight to the point and really

joyedet
Автор

Thanks for all those HTML tutorial, really needed them !

Remolhunter
Автор

Thanks for the html series! I now have a front end set up!

tatyana
Автор

Good Job! However, I bet complete newbies are confused right now! 😂😂

rtwqedt
Автор

Thanks for this. Covered an hour topic this evening on my course and it's nice to get an 8 min refresher of basically what was covered.

DMM
Автор

Thanks. If people are wondering 'name' attribute of an input element is often used by server side scripts like PHP after the form is submitted eg. sending the form values to a specific email address. Only form elements with a name will have their values passed when submit is pressed.

afzal-k
Автор

Best HTML forms video ever! Thanks!🤘🤘🤘

musicalnostalgician
Автор

started learning HTML after a while since I did a course and I really enjoy the short video's as I find it a best way to learn one thing at a time at a great pace. please keep up the good work and thank you for your time. Credit where is Due

XTT
Автор

NOW THIS IS A LEGENDARY VIDEO💯

Sweet, Short & SO INFORMATIVE!!!❤‍🔥


Great work Bro💪🏿😤

kevinsengakane
Автор

Thank You for this video. I was reviewing this information in a text format and was having a hard time internalizing the info. This presentation helped out immensely.

shannonbrookshire
Автор

best video about form! precise and complete

arifsaleem-
Автор

anyone looking for a forms video this was more informative than a 45 minute course i watched, doesnt go in depth but explains it generally at a amazing rate both visually and hearingly(however u say it)

khalil
Автор

Clear, to the point and great explanations to understand the stuff you try to teach us. Personally I think this was one of the best tutorials on HTML forms basics on youtube. You got my sub brother 👍

Arjunvandemataram
Автор

Great video! You covered everything I needed and had doubts about :-)

TejPandit
Автор

I thought this would be hard. But its pretty simple. Thank you

patrickstar
Автор

Amazing ❤️
Your accent is very good and also the way of teaching which don’t spend more time
Love feom Afghanistan 🇦🇫 ❤️

mahdinoori
Автор

Fantastic - straightforward and helpful, thanks man :)

Skry