- HTML Tutorial
- HTML - Home
- HTML - Introduction
- HTML - Editors
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Headings
- HTML - Paragraphs
- HTML - Fonts
- HTML - Blocks
- HTML - Style Sheet
- HTML - Formatting
- HTML - Quotations
- HTML - Comments
- HTML - Colors
- HTML - Images
- HTML - Image Map
- HTML - Iframes
- HTML - Phrase Elements
- HTML - Meta Tags
- HTML - Classes
- HTML - IDs
- HTML - Backgrounds
- HTML Tables
- HTML - Tables
- HTML - Headers & Caption
- HTML - Table Styling
- HTML - Table Colgroup
- HTML - Nested Tables
- HTML Lists
- HTML - Lists
- HTML - Unordered Lists
- HTML - Ordered Lists
- HTML - Definition Lists
- HTML Links
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML Color Names & Values
- HTML - Color Names
- HTML - RGB
- HTML - HEX
- HTML - HSL
- HTML Forms
- HTML - Forms
- HTML - Form Attributes
- HTML - Form Control
- HTML - Input Attributes
- HTML Media
- HTML - Video Element
- HTML - Audio Element
- HTML - Embed Multimedia
- HTML Header
- HTML - Head Element
- HTML - Adding Favicon
- HTML - Javascript
- HTML Layouts
- HTML - Layouts
- HTML - Layout Elements
- HTML - Layout using CSS
- HTML - Responsiveness
- HTML - Symbols
- HTML - Emojis
- HTML - Style Guide
- HTML Graphics
- HTML - SVG
- HTML - Canvas
- HTML APIs
- HTML - Geolocation API
- HTML - Drag & Drop API
- HTML - Web Workers API
- HTML - WebSocket
- HTML - Web Storage
- HTML - Server Sent Events
- HTML Miscellaneous
- HTML - MathML
- HTML - Microdata
- HTML - IndexedDB
- HTML - Web Messaging
- HTML - Web CORS
- HTML - Web RTC
- HTML Demo
- HTML - Audio Player
- HTML - Video Player
- HTML - Web slide Desk
- HTML Tools
- HTML - Velocity Draw
- HTML - QR Code
- HTML - Modernizer
- HTML - Validation
- HTML - Color Picker
- HTML References
- HTML - Cheat Sheet
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
- HTML Resources
- HTML - Quick Guide
- HTML - Useful Resources
- HTML - Color Code Builder
- HTML - Online Editor
HTML - Web Slide Desk
A slide is a single page of a presentation. Collectively, a group of slides may be known as a slide deck.
Example
Let's look at the following example, where we are going to create a HTML web slide desk
<!DOCTYPE html> <html> <style> body { font-family: verdana; background-color: #F4ECF7; color: #DE3163; } .x { display: none; text-align: center; padding: 123px; } .x.active { display: block; } .prev, .next { position: absolute; top: 40%; background-color: #EAFAF1; color: #DE3163; padding: 10px 20px; cursor: pointer; border: none; transition: background-color 0.2s; } .prev:hover, .next:hover { background-color: #DFFF00; } .prev { left: 10px; } .next { right: 10px; } </style> <body> <div class="x active"> <h1>SLIDE 1</h1> <p>HELLO</p> </div> <div class="x"> <h1>SLIDE 2</h1> <p>WELCOME</p> </div> <div class="x"> <h1>SLIDE 3</h1> <p>THANK YOU.!</p> </div> <button class="prev" onclick="prevSlide()">Previous</button> <button class="next" onclick="nextSlide()">Next</button> <script> let a = 0; const slides = document.querySelectorAll('.x'); function showSlide(n) { slides[a].classList.remove('active'); a = (n + slides.length) % slides.length; slides[a].classList.add('active'); } function prevSlide() { showSlide(a - 1); } function nextSlide() { showSlide(a + 1); } showSlide(a); </script> </body> </html>
When we run the above code, it will generate an output consisting of the button along with a slides containing the text in it displayed on the webpage
Advertisements