How can I create a sliding size selector with HTML? [closed] - html

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
How can I create something similar to the image using only HTML5?
__________
s m l xl
Thank you!

This is simplest solution.
<div>
<input type="range" id="volume" name="volume" min="0" max="3" step="1">
</div>
<div>
<span style="display:inline-block; width:35px">S</span>
<span style="display:inline-block; width:35px">M</span>
<span style="display:inline-block; width:35px">L</span>
<span style="display:inline-block; width:35px">XL</span>
</div>

Related

How can I wrap a group of elements with a simple line border? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I'm making a form and I want to surround a group of inputs with a line as shown in the picture below:
This is my code
<div class="selectMov" >
<p>Tipo de Movimiento</p>
<input type="radio" class="optTiMov" value=1> Entrada<br>
<input type="radio" class="optTiMov" value=2> Salida<br>
</div>
I've seen this kind of element before, but I don't what it is called or how to make it
A simple way is to use fieldset. Here is a similar example
fieldset {
border 1px solid #ddd;
border-radius: 6px;
}
<fieldset>
<legend>Personalia:</legend>
Name: <input type="text"><br>
Email: <input type="text"><br>
</fieldset>

HTML - how to get the answers on a quiz<form> [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
<form action="quiz.cfm" method="get">
<fieldset>
<legend>Your Details</legend>
<div>
<label for="What is the length of a banana?">What is the length of a banana?:</label><br>
<input type="text" name="What is the length of a banana?" value="" maxlength="100" /><br>
</div>
<div>
<input type="submit" value="Submit" />
</div>
</fieldset>
</form>
Hello.
That is the code I have so far.
I want to know what I am supposed to do to actually get the answers, send them to my e-mail for example.
Thank you in advance,
Iluvpresident
The code below should be incorporated into the "quiz.cfm" page.
<cfmail
from="fromemailaddress"
to="toEmailAddress"
subject="A new form entry has been submitted">
A customer inquiry was posted to our website:
Text : #Form.answer#
</cfmail>

is there any alternated method for anchor tag?(Deleted) [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
This is my sample html page where i'm using anchor tag inside but i need any alternate method instead of anchor tag,could anybody tell me.
<body>
<table><tr><td>
<a href="http://www.w3schools.com">Visit W3Schools.com!
<div></div>
</a>
</td></tr>
</table>
</body>
Thanks for your help.
Maybe you could use:
<form method="GET" action="foo.html">
<input type="submit" />
</form>
The difference between those two methods: <form method="link" > or <a>? What's the difference?

Why is onblur="trim()" used in input element? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
<input type="text" name="firstName" id="firstName" onblur="trim(document.TheForm.firstName)" value="" />
In the above element the why is attribute onblur="trim(document.TheForm.firstName)" used.
To remove trailing whitespace when you leave the field.
When a user leaves the input field firstName, the entered value is trimmed.

How i draw 3textbox in in <td> [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
![example of textbox i want![][1]][1]
EXAPMLE OF textbox
hi to all
i have some problem with Table
when i create tage
i want like example below.
i have some problem
1. when i enter
CNIC-NO
--
they cannot dispplay same line
Note. i have only 2 coloumns in my table.
plz tell me how i draw this text box like example attached below.
[1]: http://i.stack.imgur.com/ulpZm.png "table
"
you can simply do this
<td>
<input type="text" style="display: inline-block" />
<input type="text" style="display: inline-block" />
<input type="text" style="display: inline-block" />
</td>