1 / 8

5 HTML Tricks Nobody Tells You

We often combine HTML with CSS, JavaScript, and other technologies to make our websites and blogs appear more appealing. But does HTML contain a wealth of useful tips and tricks that might come in helpful and assist you in creating a beautiful website?<br><br>To stay updated with rising business and tech trends, Visit our website: https://www.marsdevs.com/

marsdevs
Download Presentation

5 HTML Tricks Nobody Tells You

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. www.marsdevs.com 01/07 5 HTML tricks nobody tells you

  2. 02/07 01 Accept The accept attribute allows the user to choose which file types can upload, such as just uploading.jpg or.raw. <input type="file" accept=".jpg , .raw">

  3. 03/07 02 Spellcheck On HTML elements like input, spellcheck is used to check spelling and grammar. <p spellcheck="true"> Hello World! </p>

  4. 04/07 03 Translate The translate attribute indicates to the browser whether or not to translate the text. <p translate="no"> Hello World! </p>

  5. 05/07 04 Poster While the movie is downloading, you can define an image to display using the poster attribute. <video src=" " poster="any.png"></video>

  6. 06/07 05 Download Instead of surfing or searching, the download attribute instructs the browser to download a URL. When a user clicks on the hyperlink, the download attribute signals that the target file will be downloaded. <a href=" " download></a>

More Related