demo - HTMLify profile

demo's Profile Picture

demo

53 Files

10288 Views

Latest files of demo

1. Rock Paper Scissors Game in Kotlin | Owner: demo | Views: 218 | Comments: 0 | Open/ Source 1.04 KB

import java.util.Random fun main() { val options = arrayOf("Rock", "Paper", "Scissors") while (true) { p

2. hello-world.cbl | Owner: demo | Views: 196 | Comments: 0 | Open/ Source 115 B

IDENTIFICATION DIVISION. PROGRAM-ID. HelloWorld. PROCEDURE DIVISION. DISPLAY "Hello, World!". STOP RUN.

3. Hello World in Java | Owner: demo | Views: 248 | Comments: 6 | Open/ Source 127 B

public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World!"); } }

4. ABHDEF-23-1-1.png | Owner: demo | Views: 59 | Comments: 0 | Open/ Source 0 B

5. Style | Owner: demo | Views: 75 | Comments: 0 | Open/ Source 675 B

/* Reset some default styles */ body, h1, h2, p { margin: 0; padding: 0; } /* Style the header */ header {

6. test.html | Owner: demo | Views: 210 | Comments: 0 | Open/ Source 733 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

7. testing.html | Owner: demo | Views: 187 | Comments: 0 | Open/ Source 60 B

<html> <head> inrroduction</head> <title>self intro</title>

8. js4.html | Owner: demo | Views: 208 | Comments: 0 | Open/ Source 1.64 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

9. js3.html | Owner: demo | Views: 206 | Comments: 0 | Open/ Source 613 B

<!DOCTYPE html> <html> <head> <title>Auto Vibration on Page Load</title> </head> <body> <script> // Funct

10. js2.html | Owner: demo | Views: 192 | Comments: 0 | Open/ Source 690 B

<!DOCTYPE html> <html> <head> <title>Vibration Button</title> </head> <body> <button id="vibrateButton"><h1>Vibrat

11. vibration.html | Owner: demo | Views: 188 | Comments: 0 | Open/ Source 683 B

<!DOCTYPE html> <html> <head> <title>Vibration Button</title> </head> <body> <button id="vibrateButton">Vibrate<

12. about.html | Owner: demo | Views: 230 | Comments: 0 | Open/ Source 1.73 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

13. contact.html | Owner: demo | Views: 260 | Comments: 0 | Open/ Source 1.62 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

14. index.html | Owner: demo | Views: 193 | Comments: 0 | Open/ Source 1.64 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

15. index.html | Owner: demo | Views: 189 | Comments: 0 | Open/ Source 2.14 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

16. check-prime.js | Owner: demo | Views: 79 | Comments: 0 | Open/ Source 787 B

// program to check if a number is prime or not // take input from the user const number = parseInt(prompt("Enter a positive

17. check-prime.cpp | Owner: demo | Views: 179 | Comments: 0 | Open/ Source 519 B

#include <iostream> using namespace std; int main() { int i, n; bool is_prime = true; cout << "Enter a positive

18. check-odd-or-even.cpp | Owner: demo | Views: 195 | Comments: 0 | Open/ Source 224 B

#include <iostream> using namespace std; int main() { int n; cout << "Enter an integer: "; cin >> n; if ( n

19. check-leap-year.cpp | Owner: demo | Views: 167 | Comments: 0 | Open/ Source 650 B

#include <iostream> using namespace std; int main() { int year; cout << "Enter a year: "; cin >> year; // le

20. hello-world.cobra | Owner: demo | Views: 187 | Comments: 0 | Open/ Source 58 B

21. hello-world.cs | Owner: demo | Views: 198 | Comments: 0 | Open/ Source 113 B

using System; class Program { static void Main() { Console.WriteLine("Hello, World!"); } }

22. hello-world.kt | Owner: demo | Views: 212 | Comments: 0 | Open/ Source 45 B

fun main() { println("Hello, World!") }

23. hello-world.pl | Owner: demo | Views: 174 | Comments: 0 | Open/ Source 24 B

print "Hello, World!\n";

24. hello-world.go | Owner: demo | Views: 188 | Comments: 0 | Open/ Source 82 B

package main import "fmt" func main() { fmt.Println("Hello, World!") }

25. hello-world.rs | Owner: demo | Views: 228 | Comments: 0 | Open/ Source 46 B

fn main() { println!("Hello, World!"); }

26. hello-world.scala | Owner: demo | Views: 185 | Comments: 0 | Open/ Source 108 B

object HelloWorld { def main(args: Array[String]): Unit = { println("Hello, World!") } }

27. hello-world.i | Owner: demo | Views: 216 | Comments: 0 | Open/ Source 76 B

28. hello-world.m | Owner: demo | Views: 206 | Comments: 0 | Open/ Source 119 B

(=<`:9876Z4321UT.-Q+*)M'&%$H"""'~}|Bzyxwvutsrqponmlkjihgfedcba`_^][ ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9876543210/.-, +*

29. hello-world.asm | Owner: demo | Views: 264 | Comments: 1 | Open/ Source 589 B

section .data hello db 'Hello, World!',0 section .text global _start _start: ; Write the string to stdout (

30. basic-webpage-structure.html | Owner: demo | Views: 214 | Comments: 0 | Open/ Source 178 B

<!DOCTYPE html> <html> <head> <title>My Web Page</title> </head> <body> <h1>Welcome to My Web Page</h1> <p>Th

31. creating-simple-table.sql | Owner: demo | Views: 206 | Comments: 0 | Open/ Source 127 B

CREATE TABLE Students ( StudentID INT PRIMARY KEY, FirstName VARCHAR(50), LastName VARCHAR(50), Age INT );

32. calculate-area-of-rectangle.swift | Owner: demo | Views: 207 | Comments: 0 | Open/ Source 101 B

let length = 5.0 let width = 3.0 let area = length * width print("Area of the rectangle: \(area)")

33. simple-webpage.php | Owner: demo | Views: 212 | Comments: 0 | Open/ Source 232 B

<!DOCTYPE html> <html> <head> <title>My PHP Web Page</title> </head> <body> <h1>Welcome to my PHP Web Page</h1>

34. simple-string-manipulation.rb | Owner: demo | Views: 233 | Comments: 0 | Open/ Source 58 B

name = "John" greeting = "Hello, #{name}!" puts greeting

35. calculating-factorial.cpp | Owner: demo | Views: 170 | Comments: 0 | Open/ Source 259 B

#include <iostream> using namespace std; int factorial(int n) { if (n <= 1) return 1; return n * factoria

36. calculate-sum-of-two-numbers.java | Owner: demo | Views: 183 | Comments: 0 | Open/ Source 207 B

public class SumCalculator { public static void main(String[] args) { int num1 = 5; int num2 = 10;

37. display-date-and-time.js | Owner: demo | Views: 100 | Comments: 0 | Open/ Source 86 B

const currentDate = new Date(); console.log(`Current Date and Time: ${currentDate}`);

38. display-date-and-time.html | Owner: demo | Views: 173 | Comments: 0 | Open/ Source 86 B

const currentDate = new Date(); console.log(`Current Date and Time: ${currentDate}`);

39. hello-world.py | Owner: demo | Views: 181 | Comments: 0 | Open/ Source 22 B

print("Hello, World!")

40. js1.html | Owner: demo | Views: 195 | Comments: 0 | Open/ Source 1.74 KB

<!DOCTYPE html> <html> <head> <title>JavaScript Interactive Demo</title> <style> /* Custom CSS for the butt

41. css4.html | Owner: demo | Views: 188 | Comments: 0 | Open/ Source 934 B

<!DOCTYPE html> <html> <head> <title>CSS Loading Spinner Animation</title> <style> /* Custom CSS for the lo

42. css3.html | Owner: demo | Views: 174 | Comments: 0 | Open/ Source 949 B

<!DOCTYPE html> <html> <head> <title>Continuous Fade In and Out Animation with CSS</title> <style> /* Custo

43. css2.html | Owner: demo | Views: 183 | Comments: 0 | Open/ Source 1000 B

<!DOCTYPE html> <html> <head> <title>Fade In and Out Animation Demo</title> <style> /* Custom CSS for the a

44. css1.html | Owner: demo | Views: 188 | Comments: 0 | Open/ Source 844 B

<!DOCTYPE html> <html> <head> <title>Non-Bootstrap Animation Demo</title> <style> /* Custom CSS for the ani

45. bs5.html | Owner: demo | Views: 193 | Comments: 0 | Open/ Source 2.61 KB

<!DOCTYPE html> <html> <head> <title>Bootstrap Form Demo</title> <!-- Include Bootstrap CSS from a CDN --> <lin

46. bs4.html | Owner: demo | Views: 187 | Comments: 0 | Open/ Source 1.02 KB

<!DOCTYPE html> <html> <head> <title>Bootstrap Progress Bar Demo</title> <!-- Include Bootstrap CSS from a CDN -->

47. bs3.html | Owner: demo | Views: 201 | Comments: 0 | Open/ Source 1.86 KB

<!DOCTYPE html> <html> <head> <title>Bootstrap Modal Demo</title> <!-- Include Bootstrap CSS from a CDN --> <li

48. bs2.html | Owner: demo | Views: 196 | Comments: 0 | Open/ Source 1.26 KB

<!DOCTYPE html> <html> <head> <title>Bootstrap Grid Demo</title> <!-- Add Bootstrap CSS from a CDN --> <link re

49. bs1.html | Owner: demo | Views: 218 | Comments: 0 | Open/ Source 1.82 KB

<!DOCTYPE html> <html> <head> <title>Bootstrap CSS Demo</title> <!-- Add Bootstrap CSS from a CDN --> <link rel

50. webpage3.html | Owner: demo | Views: 183 | Comments: 0 | Open/ Source 1.93 KB

<!DOCTYPE html> <html> <head> <title>JavaScript Demo Page</title> <style> body { font-family:

51. webpage2.html | Owner: demo | Views: 159 | Comments: 0 | Open/ Source 1.71 KB

<!DOCTYPE html> <html> <head> <title>My Unique Demo Page</title> <style> body { font-family: "

52. webpage1.html | Owner: demo | Views: 170 | Comments: 0 | Open/ Source 1.08 KB

<!DOCTYPE html> <html> <head> <title>My Demo Page</title> <style> body { font-family: Arial, s

53. Demo Showcase | Owner: demo | Views: 437 | Comments: 0 | Open/ Source 7.52 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in