This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <h2>Undo-Redo Example</h2> | |
| <div class="toolbar"> | |
| <button id="undo" disabled="">Undo (Ctrl+Z)</button> | |
| <button id="redo" disabled="">Redo (Ctrl+Y)</button> | |
| <br /> | |
| <span class="status" id="status">1 / 1</span> | |
| </div> | |
| <textarea id="editor" placeholder="Start typing..."></textarea> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <button id="startButton">Start Recursion</button> | |
| <div id="output"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <header> | |
| <div class="logo">XODE</div> | |
| <nav> | |
| <a href="#features">Features</a> | |
| <a href="#contact">Contact</a> | |
| </nav> | |
| </header> | |
| <section class="hero"> | |
| <h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="calculator"> | |
| <input type="text" id="display" disabled> | |
| <div class="buttons"> | |
| <button onclick="clearDisplay()">C</button> | |
| <button onclick="appendToDisplay('7')">7</button> | |
| <button onclick="appendToDisplay('8')">8</button> | |
| <button onclick="appendToDisplay('9')">9</button> | |
| <button onclick="appendToDisplay('/')">/</button> | |
| <button onclick="appendToDisplay('4')">4</button> | |
| <button onclick="appendToDisplay('5')">5</button> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <nav> | |
| <div class="logo">DevPort</div> | |
| <ul> | |
| <li><a href="#about">About</a></li> | |
| <li><a href="#projects">Projects</a></li> | |
| <li><a href="#skills">Skills</a></li> | |
| <li><a href="#contact">Contact</a></li> | |
| </ul> | |
| </nav> | |
| <header class="hero"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <header> | |
| <div class="logo">XODE</div> | |
| <nav> | |
| <a href="#features">Features</a> | |
| <a href="#contact">Contact</a> | |
| </nav> | |
| </header> | |
| <section class="hero"> | |
| <h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <header class="navbar"> | |
| <div class="logo">XODE</div> | |
| <nav> | |
| <a href="#features">Features</a> | |
| <a href="#editor">Editor</a> | |
| <a href="#download" class="btn-secondary">Download</a> | |
| </nav> | |
| </header> | |
| <main> | |
| <section class="hero"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Backend, Laravel & AI Engineer</title> | |
| <!-- Tailwind CSS --> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <!-- FontAwesome Icons --> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <!-- Google Fonts --> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin=""> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="wrap"> | |
| <nav> | |
| <div class="logo"> | |
| <div class="logo-mark">X</div> | |
| Xode | |
| </div> | |
| <div class="links"> | |
| <a href="#features">Features</a> | |
| <a href="#demo">Editor</a> | |
| <a href="#philosophy">Why</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Your HTTPS domain name i.e: local.dev | |
| DOMAIN_NAME= | |
| # Your server port i.e: 3000 | |
| PORT= | |
| # Path to your local.dev+2-key.pem i.e: C:\\Users\\YOUR_USER_NAME\\local.dev+2-key.pem | |
| SSL_KEY_PATH= | |
| # Path to your local.dev+2.pem i.e: C:\\Users\\YOUR_USER_NAME\\local.dev+2.pem | |
| SSL_CERT_PATH= |
NewerOlder