HTMLify
Demo Showcase
Views: 1046 | Author: demo
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Demo Showcase</title> <style> body { font-family: Arial, sans-serif; background-color: #f0f0f0; margin: 0; padding: 0; } header { background-color: #3498db; color: white; text-align: center; padding: 50px 0; } h1 { font-size: 36px; } p { font-size: 20px; } main { max-width: 800px; margin: 20px auto; padding: 20px; background-color: white; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); } section { margin-bottom: 20px; } h2 { font-size: 24px; color: #333; } ul { list-style: none; padding: 0; } li { margin: 10px 0; } a { text-decoration: none; color: #3498db; font-weight: bold; } header a { color: #f3f3f3; } footer { text-align: center; color: #666; margin-top: 20px; } </style> </head> <body> <header> <a href="/">Back to Home</a> <h1>Welcome to Demo Showcase!</h1> <p>Explore a variety of web pages and code snippets below:</p> </header> <p style="padding:10px">Here you will find example of web pages and code that you can host onto HTMLify to know the potential of HTMLify, this page can also consider for learning purpose. Updated on 05 NOV 2023</p> <main> <section> <h2>Web Pages</h2> <ul> <li><a href="render/webpage1.html">A simple web page made with HTML, CSS and JavaScript</a></li> <li><a href="render/webpage2.html">A simple web page made with HTML, CSS and JavaScript</a></li> <li><a href="render/webpage3.html">A simple web page demonstrating basic JavaScript functionality</a></li> </ul> <h3>From community</h3> <ul> <li><a href="http://htmlify.artizote.com/tanishkak/tribute.html">TRIBUTE PAGE</a> -by <a href="/tanishkak">tanishkak</a></li> <li><a href="https://htmlify.artizote.com/khushi/Mine's%20Restaurant/index.html">Min's restaurant</a> - by <a href="/khushi">khushi</a></li> </ul> </section> <section> <h2>CSS Animations</h2> <ul> <li><a href="render/css1.html">Fade In animation with CSS</a></li> <li><a href="render/css2.html">Fade In and Out animation with CSS</a></li> <li><a href="render/css3.html">Continuous Fade In and Out animation with CSS</a></li> <li><a href="render/css4.html">Loading Spinner animation with CSS</a></li> </ul> </section> <section> <h2>JavaScript</h2> <ul> <li><a href="render/js1.html">Random Background color changing with JavaScript</a></li> <li><a href="render/js2.html">Simple Vibration with JavaScript</a></li> <li><a href="render/js4.html">Infinite Vibration with JavaScript</a></li> </ul> </section> <section> <h2>Bootstrap</h2> <ul> <li><a href="render/bs1.html">Demonstrate Bootstrap navigation bar</a></li> <li><a href="render/bs2.html">Demonstrate Bootstrap grid system</a></li> <li><a href="render/bs3.html">Demonstrate Bootstrap modal</a></li> <li><a href="render/bs4.html">Demonstrate Bootstrap progress bar</a></li> <li><a href="render/bs5.html">A simple form with Bootstrap</a></li> </ul> </section> <section> <h2>Websites</h2> <ul> <li><a href="site/demo1/index.html">A simple demo one page site</a></li> <li><a href="site/demo2/index.html">A simple demo multi page site</a></li> </ul> </section> <section> <h2>Code Samples</h2> <ul> <li><a href="code/hello-world.py">Hello World in Python</a></li> <li><a href="code/hello-world.asm">Hello World in Assembly</a></li> <li><a href="code/hello-world.m">Hello World in Malbloge</a></li> <li><a href="code/hello-world.scala">Hello World in Scala</a></li> <li><a href="code/hello-world.rs">Hello World in Rust</a></li> <li><a href="code/hello-world.pl">Hello World in Perl</a></li> <li><a href="code/hello-world.kt">Hello World in Kotlin</a></li> <li><a href="code/hello-world.cs">Hello World in C#</a></li> <li><a href="code/hello-world.java">Hello World in Java</a></li> <li><a href="code/hello-world.cbl">Hello World in COBOL</a></li> <li><a href="code/display-date-and-time.js">Display Date and Time in JavaScript</a></li> <li><a href="code/calculate-sum-of-two-numbers.java">Calculate sum of two numbers in Java</a></li> <li><a href="code/calculating-factorial.cpp">Calculating Factorial in C++</a></li> <li><a href="code/simple-string-manipulation.rb">Simple String Manipulation in Ruby</a></li> <li><a href="code/simple-webpage.php">A simple webpage example in PHP</a></li> <li><a href="code/calculate-area-of-rectangle.swift">Calculating area of a Rectentgle in Swift</a></li> <li><a href="code/creating-simple-table.sql">Creating a simple table with SQL query</a></li> <li><a href="code/basic-webpage-structure.html">A simple Web page Structure</a></li> <li><a href="code/check-leap-year.cpp">Checking leap year in C++</a></li> <li><a href="code/check-odd-or-even.cpp">Check even or odd number</a></li> <li><a href="code/check-prime.cpp">Check prime number in C++</a></li> <li><a href="code/check-prime.js">Check prime number in JS</a></li> </ul> <h3>From Community</h3> <ul> <li><a href="/abh/pra.py">Page Replacment Algorithems in Python</a> -by <a href="/abh">abh</a></li> </ul> </section> <section> <h2>Mini Projects</h2> <ul> <li><a href="https://htmlify.artizote.com/cody/swapnilsparsh/30DaysOfJavaScript/108%20-%20Maths%20addition/index.html">Math Addition</a>/li> </ul> <h3>From community</h3> <ul> <li><a href="/djdj/mc.html">Chat Frontend</a> -by <a href="/djdj">djdj</a></li> <li><a href="https://htmlify.artizote.com/deepika/QR%20CODE.html">QR Code Generater</a> -by <a href="/deepika">deepika</a></li> </ul> </section> </main> <footer> <p>Mention @demo in comments to add your code/page here or</p> <p>Comment <a href="/src/demo/index.html">here</a> if you want your work to be featured here.</p> <p>Thank you for exploring HTMLify! Keep explore and find more uses of HTMLify.</p> </footer> </body> </html> |