Articles on Trending Technologies

Technical articles with clear explanations and examples

How to display deleted text in HTML?

Ankith Reddy
Ankith Reddy
Updated on 24-Jun-2020 442 Views

Use the tag to display the deleted text. The following are the attributes −AttributeValueDescriptionCiteURLDefines a URL to another document which explains why the text was deleted.DatetimeYYYYMMDD HH:MM:SSDefines the date and time the text was deleted.ExampleYou can try to run the following code to display deleted text −           HTML del Tag               The following text is deleted using HTML del tag    

Read More

How do we add a push button to HTML?

Arjun Thakur
Arjun Thakur
Updated on 24-Jun-2020 3K+ Views

Use the tag in HTML to add a push button. The HTML tag is used for creating a button within HTML form. You can also use tag to create similar buttons.The following are the attributes of the tag −AttributeValueDescriptionautofocusAutofocusSpecifies that the button should have input focus when the page loads.disabledDisabledSpecifies the button is disabled.formform_idSpecifies the forms to which button belongs.formactionURLSpecifies the link where the form submits.formenctypeapplication multipart/form-data text/plainSpecifies how the form data is encoded before sending it to server.formmethodget postSpecifies how to send form data.formnovalidateFormnovalidateSpecifies that the form data should not be validated.formtarget_blank_self _parent _topSpecifies where the response should ...

Read More

How do we add glossary definitions in HTML?

Anvi Jain
Anvi Jain
Updated on 24-Jun-2020 2K+ Views

Use the tag in HTML to add the glossary definitions. The HTML tag is used for declaring a definition list. This tag is used within tag.A definition list is similar to other lists but in a definition list, each list item contains two entries; a term and a description.ExampleYou can try to run the following code to implement tag −           HTML dl Tag                        Definition List          A list of terms and their definitions/descriptions.          HTML          An HTML tutorial.          PHP          An PHP tutorial.          

Read More

Fade in on Button hover with CSS

Arjun Thakur
Arjun Thakur
Updated on 24-Jun-2020 862 Views

You can try to run the following code to fade in on button hover with CSSExampleLive Demo                    .btn {             background-color: orange;             color: white;             padding: 10px;             text-align: center;             font-size: 16px;             margin: 5px;             opacity: 0.5;             transition: 0.5s;             display: inline-block;             text-decoration: none;             cursor: pointer;          }          .btn:hover {             opacity: 2          }                     Result    

Read More

Different Operations on Processes

Kristi Castro
Kristi Castro
Updated on 24-Jun-2020 24K+ Views

There are many operations that can be performed on processes. Some of these are process creation, process preemption, process blocking, and process termination. These are given in detail as follows −Process CreationProcesses need to be created in the system for different operations. This can be done by the following events −User request for process creationSystem initializationExecution of a process creation system call by a running processBatch job initializationA process may be created by another process using fork(). The creating process is called the parent process and the created process is the child process. A child process can have only one ...

Read More

Create a draggable paragraph in HTML5

Nancy Den
Nancy Den
Updated on 24-Jun-2020 530 Views

Use the draggable attribute to create a draggable paragraph. Enable or Disable the drag using the values true and false.ExampleYou can try to run the following code to implement draggable element and drag an element −                    .drag {             float: left;             width: 100px;             height: 75px;             border: 1px dashed #876587;             margin: 15px;             padding: 10px;          }   ...

Read More

How to add a unique id for an element in HTML?

Abhinaya
Abhinaya
Updated on 24-Jun-2020 978 Views

Use the id attribute in HTML to add the unique id of an element.ExampleYou can try to run the following code to implement id attribute −           Tutorialspoint       We provide Tutorials!       More...                function display() {             document.getElementById("myid").innerHTML = "We provide learning videos as well";          }          

Read More

Interprocess Communication with Sockets

David Meador
David Meador
Updated on 24-Jun-2020 7K+ Views

Interprocess communication is the mechanism provided by the operating system that allows processes to communicate with each other. This communication could involve a process letting another process know that some event has occurred or transferring of data from one process to another.One of the ways to manage interprocess communication is by using sockets. They provide point-to-point, two-way communication between two processes. Sockets are an endpoint of communication and a name can be bound to them. A socket can be associated with one or more processes.Types of SocketsThe different types of sockets are given as follows −Sequential Packet Socket: This type ...

Read More

Execute a script when media data is loaded in HTML?

Vrundesha Joshi
Vrundesha Joshi
Updated on 24-Jun-2020 199 Views

Use the onloaddata event to execute a script when media data is loaded. You can try to run the following code to implement onloaddata event −ExampleThe following code generates an alert box when the video gets loaded −                                        Your browser does not support the video element.                      function display() {             alert("Loaded!");          }          

Read More

How to set that the specified element/group of elements should be disabled in HTML?

vanithasree
vanithasree
Updated on 24-Jun-2020 149 Views

Use the disabled attribute to disable an element. The attribute can be used for the following elements: , , , , etc.ExampleYou can try to run the following code to implement disabled attribute −           Which sports do you like?                 Football           Cricket           Hockey                    

Read More
Showing 48561–48570 of 61,248 articles
Advertisements