HTML – Input tag

HTML – Input tag

 

The input tag does not need an ending tag and can have numerous attributes:

  • text
  • password
  • radio
  • checkbox
  • reset
  • submit

 

HTML – Text fields and passwords

I am really sure that you have certainly hear a lot of, over the time, on the Internet.

HTML<input type="text" /><br />
<input type="password" />

Demo

Write something in the boxes above to see the difference.

 

HTML – Checkboxes

Ideal for offering the user the option of selecting more than one answers

HTML<input type="checkbox" /> Milk<br />
<input type="checkbox" /> Water<br />
<input type="checkbox" /> Bread

Demo

 Milk
Water
Bread

HTML – Radio

And I am not saying a music radio, but a small circle which offers the possibility of choosing only one answer for a single question.

HTML<input type="radio" /> Man<br />
<input type="radio" /> Woman

Demo

 Man
Woman

HTML – Submit buttons

Here, we will have to give a value to the submit attribute, this being the text that will be shown on the generated button.

HTML<input type="submit" value="Submit" />
<input type="submit" value="Next step &gt;&gt;" />

Demo

HTML – Reset Buttons

Here, same as with the submit button, we will have to give a value, that will be the text that will be shown on the generated button. This button is extremely useful in cases in which the user completes the majority of the forms with wrong information.

HTML<input type="reset" value="Reset" />
<input type="reset" value="Delete All " />

Demo

HTML Input fields – Note

It must be specified that those forms and buttons will not fully act without the help of a php or javascript files that will execute the wanted action once one of these buttons is pressed. In the next tutorial we will go more in depth with the shown attributes and you will also show some things that we have not yet mentioned.

Python Example for Beginners

Two Machine Learning Fields

There are two sides to machine learning:

  • Practical Machine Learning:This is about querying databases, cleaning data, writing scripts to transform data and gluing algorithm and libraries together and writing custom code to squeeze reliable answers from data to satisfy difficult and ill defined questions. It’s the mess of reality.
  • Theoretical Machine Learning: This is about math and abstraction and idealized scenarios and limits and beauty and informing what is possible. It is a whole lot neater and cleaner and removed from the mess of reality.

Data Science Resources: Data Science Recipes and Applied Machine Learning Recipes

Introduction to Applied Machine Learning & Data Science for Beginners, Business Analysts, Students, Researchers and Freelancers with Python & R Codes @ Western Australian Center for Applied Machine Learning & Data Science (WACAMLDS) !!!

Latest end-to-end Learn by Coding Recipes in Project-Based Learning:

Applied Statistics with R for Beginners and Business Professionals

Data Science and Machine Learning Projects in Python: Tabular Data Analytics

Data Science and Machine Learning Projects in R: Tabular Data Analytics

Python Machine Learning & Data Science Recipes: Learn by Coding

R Machine Learning & Data Science Recipes: Learn by Coding

Comparing Different Machine Learning Algorithms in Python for Classification (FREE)

Disclaimer: The information and code presented within this recipe/tutorial is only for educational and coaching purposes for beginners and developers. Anyone can practice and apply the recipe/tutorial presented here, but the reader is taking full responsibility for his/her actions. The author (content curator) of this recipe (code / program) has made every effort to ensure the accuracy of the information was correct at time of publication. The author (content curator) does not assume and hereby disclaims any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from accident, negligence, or any other cause. The information presented here could also be found in public knowledge domains.  

Google –> SETScholars