Asking for a HTML property - html

I am creating a web project these days. When click on a button, I want to open the description as in the below image. I do not want the code for that. I just want only know the name of that option. If anyone know tell me the name of this option. Then I could find a suitable code.

This feature is called Modal in bootstrap, more details can be found here Bootstrap Modal
please give a try.

You can use jQuery as mentioned to trigger modal box (they are used in html5 alot) and if you pretend to use it, just learn first how jQuery works and combine with CSS properties :)

Related

How can i add social share button manually?

I want to add Social share button manually not from other website, How can I will do it. I have a new site and I use new free high pr site list, Now i need help..
have you tried to add the HTML scripts to the specific button?
An example I found of what I meant can be read here: https://simplesharebuttons.com/html-share-buttons/
Not quite sure if I understod your question correctly, so please do tell me if I'm wrong and I'll try to assist.

custom css files for drop down menu

I want to implement a drop down as show in the following figure. I am trying to use html, css and bootstrap. Could someone please help me in figuring out, how to write the css code in order to get such a drop down list.
Is it possible to achieve this using html and css or do we need a third party plugin?
Thanks in advance.
Yes it is posible, have a look to this link http://www.kevinfremon.com/create-a-custom-drop-down-list-using-just-css/
The options part can't be customised using css. In that case you'd need to use a third party library and there are plenty out there (eg: MUI)
Else the link suggested by kraiosis is perfect

Hover over Dropdownlist HTML5 looking for a specific code

I want to make a form with dropdownlists like the ones on the site Nafham.com website exactly (with the headers on hover on first one and multiple columns). Are there any ready scripts for that? Is it possible to do the exact thing in Twitter Bootstrap? I am new to HTML5 so I appreciate any feedback. Thanks.
With reference to your comment above, there is a difference between stealing and gaining inspiration. So far for Off-Topic
When i understand you correctly, you want a dropdown menu with multiple columns. This can be relatively easy done with simple CSS. Learn about basic CSS and try to implent your own version, based on the bootstrap dropdown, if you like.
Correct me if i missed anything.

How to make Twitter like HTML prompt?

How can I use Twitter kind of HTML prompt for my app?
You can see this prompt message while deleting your tweet.
I have seen this style of alert box in the new version of Wordpress and its also used in Gmail.
Kindly help to figure this out.
Thanks.
Take a look at this tutorial. Not far from what you are asking for. This is a simple confirm dialogue based on some images and CSS with JQuery. So should be very easy for you to customise.
http://tutorialzine.com/2010/12/better-confirm-box-jquery-css3/
If you are looking for much more sophistication then look in to JQuery UI.
Well it's prompt style of Firefox 4. Every alert('some thing') become such kind of popup. I didn't know that.

What is HTML code that causes captions/comments pop up when mouse is rolled over a hyperlink?

What is that peice of the HTML code that allows me to provide comments to links before the user is actually clicking on them?
Do you know what I mean?
I mean, on my web page I have some hyperlinks, and I want to know some information about it - what I will be taken to if I click on this link - so I just roll over my mouse on that link and a certain kind of caption appears providing me with all necessary info about this link.
I know how to make hyperlinks in HTML, but I have no idea how to make these self-popping -up captions. Can anyone, here , please share with me how to do that? Which tags do I need to use for that?
A simple example would be highly appreciated.
Thank you all in advance!
Title.
link
If you are going for a title attribute then one problem is the default timeout for the attribute. ie after a fixed time it will disappear.
If you want a tool tip that appears when the users mouseis over that and that does not disappear, then you can use css and javascript to make a tooltip.
Create a Nice, Lightweight JavaScript Tooltip
I believe you are referring to the abbr tag
The title attribute gives the normal yellowish tooltip.