HTMLify your dreams

Filter Options:
index.html | Owner: cody | Views: 56 | Comments: 0 | Open/ Source 997 B

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

LeetCod3 - Check if Array is Good - Python | Owner: abh | Views: 79 | Comments: 0 | Open/ Source 171 B

class Solution: def isGood(self, nums: List[int]) -> bool: nums.sort() good = list(range(1, len(nums))) +

Q596_Classes_More_Than_5_Studeents.sql | Owner: djdj | Views: 112 | Comments: 0 | Open/ Source 66 B

select class from courses group by class having count(class) >= 5

index.html | Owner: cody | Views: 75 | Comments: 0 | Open/ Source 1.84 KB

<!-- Based on Terminal Style Landing Page | WinBox.js by Brad Traversy (2021) see: https://www.youtube.com/watch?v=jQCk2yo10YY -

index.html | Owner: cody | Views: 21 | Comments: 0 | Open/ Source 867 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>I

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

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

encrypt_xor_cipher.py | Owner: abh | Views: 64 | Comments: 0 | Open/ Source 130 B

def encrypt_xor_cipher(text, key): cipher = "" for char in text: cipher += chr(ord(char) ^ key) return ciphe

index.html | Owner: cody | Views: 69 | Comments: 0 | Open/ Source 2.78 KB

<!-- Based on Build One Color UI Responsive Website by Simo Edwin - Dev Ed (2020) see: https://www.youtube.com/watch?v=2IjyqauKu

index.html | Owner: cody | Views: 7 | Comments: 0 | Open/ Source 480 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>A

index.html | Owner: cody | Views: 25 | Comments: 0 | Open/ Source 513 B

<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <ti

index.html | Owner: cody | Views: 73 | Comments: 0 | Open/ Source 704 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

LeetCode - Number of Laser Beams in a Bank - C# | Owner: abh | Views: 118 | Comments: 1 | Open/ Source 525 B

public class Solution { public int NumberOfBeams(string[] bank) { int pre_lesers = 0; int beams = 0;

galery-05 | Owner: cody | Views: 86 | Comments: 0 | Open/ Source 1.21 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Swiper demo</title> <meta name="viewp

index.html | Owner: cody | Views: 20 | Comments: 0 | Open/ Source 668 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>F

form.html | Owner: priyanka | Views: 167 | Comments: 0 | Open/ Source 1.32 KB

<html> <head> <title>frame</title></head> <form> <body bgcolor="lightcyan"> Name:<input type="text" Name ="firstname"size

media-edit.html | Owner: abh | Views: 94 | Comments: 0 | Open/ Source 1.1 KB

<!-- media-edit.html --> <form action="/action/edit-media" method="POST"> <input type="hidden" name="oldname" value="{{ path[ses

index.html | Owner: cody | Views: 15 | Comments: 0 | Open/ Source 1.9 KB

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>J

index.html | Owner: cody | Views: 79 | Comments: 0 | Open/ Source 63.49 KB

<!-- Here's 1 Trick to EASILY Make An Awesome Looking Website by Gary Simon - DesignCourse (2021) see: https://www.youtube.com/w

is_valid_email.py | Owner: abh | Views: 123 | Comments: 0 | Open/ Source 220 B

def is_valid_email(email): parts = email.split("@") if len(parts) == 2: username, domain = parts if user

simple-webpage.php | Owner: demo | Views: 154 | 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>

battery.html | Owner: dakshbadal1379 | Views: 115 | Comments: 0 | Open/ Source 1.8 KB

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

onclick.html | Owner: shubh | Views: 105 | Comments: 0 | Open/ Source 602 B

// onclick event using inline event handling <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name

write_a_function.py | Owner: djdj | Views: 85 | Comments: 0 | Open/ Source 94 B

def is_leap(year): leap = False return leap year = int(input()) print(is_leap(year))

Require-Include.php | Owner: djdj | Views: 4 | Comments: 0 | Open/ Source 847 B

<?php echo"Include:<br>"; //include include 'MySQL-Databases-Connection.php'; //include will only produce a warning

index.html | Owner: cody | Views: 73 | Comments: 0 | Open/ Source 425 B

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <met

index.html | Owner: cody | Views: 51 | Comments: 0 | Open/ Source 2.0 KB

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

ir.html | Owner: djdj | Views: 146 | Comments: 0 | Open/ Source 2.53 KB

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

index.html | Owner: cody | Views: 74 | Comments: 0 | Open/ Source 5.1 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

cbrt.py | Owner: abh | Views: 120 | Comments: 0 | Open/ Source 37 B

def cbrt(n): return n ** (1/3)

LeetCode - Add Two Integers - Scala | Owner: abh | Views: 147 | Comments: 1 | Open/ Source 100 B

object Solution { def sum(num1: Int, num2: Int): Int = { return num1 + num2; } }

index.html | Owner: cody | Views: 77 | Comments: 0 | Open/ Source 636 B

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

index.html | Owner: cody | Views: 81 | Comments: 0 | Open/ Source 851 B

<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8" /> <title>Simon Game</title> <link rel="st

img.html | Owner: djdj | Views: 91 | Comments: 0 | Open/ Source 1.57 KB

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

Variable.php | Owner: djdj | Views: 35 | Comments: 0 | Open/ Source 301 B

<?php $name = "Dj"; echo "This is $name"; /* 1. start with a $ sign. 2. cannot satrt with a number. 3. must start with

user-files.html | Owner: abh | Views: 92 | Comments: 0 | Open/ Source 144 B

<!-- user-files.html --> {% for file in files %} {{ loop.index }}<a href=" {{ file.path }}">{{ file.name }}</a> {{ file.size }}<

check-prime.js | Owner: demo | Views: 39 | 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

models.py | Owner: abh | Views: 65 | Comments: 0 | Open/ Source 5.54 KB

from flask import request from flask_sqlalchemy import * from datetime import datetime from pygments import highlight, lexers, f

Q584_Find_Customer_Referee.sql | Owner: djdj | Views: 113 | Comments: 0 | Open/ Source 71 B

select name from Customer where referee_id is null or referee_id != 2;

whr.py | Owner: abh | Views: 124 | Comments: 0 | Open/ Source 56 B

def whr(waist: "cm", hip: "cm"): return waist / hip

index.html | Owner: cody | Views: 15 | Comments: 0 | Open/ Source 754 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>C

LeetCode - Add Two Integers - Python | Owner: abh | Views: 133 | Comments: 0 | Open/ Source 92 B

class Solution: def sum(self, num1: int, num2: int) -> int: return num1 + num2

LeetCode - Insert Delete GetRandom O(1) - Python | Owner: abh | Views: 95 | Comments: 0 | Open/ Source 679 B

from random import choice class RandomizedSet: def __init__(self): self.values = [] def insert(self, val

index.html | Owner: cody | Views: 13 | Comments: 0 | Open/ Source 485 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>F

material-ui.html | Owner: cody | Views: 64 | Comments: 0 | Open/ Source 1.36 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Material UI Input</title> <m

index.html | Owner: cody | Views: 79 | Comments: 0 | Open/ Source 895 B

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

index.html | Owner: cody | Views: 19 | Comments: 0 | Open/ Source 1.38 KB

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>E

54.txt | Owner: coderai | Views: 1 | Comments: 0 | Open/ Source 1.18 KB

**Coding Tutorials:** - Extensive library covering beginner to advanced concepts - Step-by-step tutorials with clear explanatio

index.html | Owner: cody | Views: 68 | Comments: 0 | Open/ Source 291 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Falling Ball Game</title> <link rel="style

index.html | Owner: cody | Views: 79 | Comments: 0 | Open/ Source 4.19 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Tabs</title> <meta name="view

index.html | Owner: cody | Views: 12 | Comments: 0 | Open/ Source 408 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>P

Tic Tac Toe Game | Owner: cody | Views: 89 | Comments: 0 | Open/ Source 2.96 KB

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

Q29_Divide_Two_Integers.py | Owner: djdj | Views: 94 | Comments: 0 | Open/ Source 222 B

class Solution { function divide($dividend, $divisor) { if(intval($dividend/$divisor) > 2**31-1){ return

app.py | Owner: abh | Views: 90 | Comments: 0 | Open/ Source 24.99 KB

#HTMLify from flask import * from flask_migrate import * from random import randint, shuffle from hashlib import md5 from os im

index.html | Owner: cody | Views: 70 | Comments: 0 | Open/ Source 1.53 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Gallery 02</title> <meta name

index.html | Owner: cody | Views: 79 | Comments: 0 | Open/ Source 7.53 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /

index.html | Owner: cody | Views: 80 | Comments: 0 | Open/ Source 1.01 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

Switch-Case.php | Owner: djdj | Views: 14 | Comments: 0 | Open/ Source 331 B

<?php $age = 30; switch($age){ case 18: echo "You are eligible for vote\n"; break;

index.html | Owner: cody | Views: 78 | Comments: 0 | Open/ Source 1.91 KB

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

index.html | Owner: cody | Views: 56 | Comments: 0 | Open/ Source 749 B

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

Alarm App | Owner: cody | Views: 74 | Comments: 0 | Open/ Source 1.1 KB

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

19.txt | Owner: coderai | Views: 1 | Comments: 0 | Open/ Source 910 B

7asg is a general-purpose programming language renowned for its simplicity, readability, and adaptability. It utilizes static t

1.txt | Owner: coderai | Views: 2 | Comments: 0 | Open/ Source 1.26 KB

CoderAI is a powerful tool that enhances the coding experience by providing assistance and guidance to developers. Its benefits

index.html | Owner: cody | Views: 76 | Comments: 0 | Open/ Source 8.3 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Parallax</title> <meta name="

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

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

index.html | Owner: cody | Views: 85 | Comments: 0 | Open/ Source 10.05 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Menu Example</title> <link rel

33.txt | Owner: coderai | Views: 1 | Comments: 0 | Open/ Source 1.26 KB

I hope this email finds you well. Thank you for reaching out and expressing your interest in my recent posts. I'm always happy

index.html | Owner: cody | Views: 72 | Comments: 0 | Open/ Source 888 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

index.html | Owner: cody | Views: 78 | Comments: 0 | Open/ Source 2.29 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

Mc | Owner: djdj | Views: 316 | Comments: 0 | Open/ Source 6.4 KB

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

Displaying-Data.php | Owner: djdj | Views: 63 | Comments: 0 | Open/ Source 938 B

<?php // Connecting to the Db $servername = "localhost"; $username = "root"; $password = ""; $database = "f

MySqL-Database.php | Owner: djdj | Views: 36 | Comments: 0 | Open/ Source 672 B

<?php //for connection to database $servername = "localhost"; $username = "root"; $password = ""; //create

stylesheet.html | Owner: abh | Views: 86 | Comments: 0 | Open/ Source 11.0 KB

<meta name="viewport" content="width=device-width, initial-scale=1"> <style> /* registration page style*/ .registration-form

index.html | Owner: cody | Views: 82 | Comments: 0 | Open/ Source 415 B

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

index.html | Owner: cody | Views: 68 | Comments: 0 | Open/ Source 2.4 KB

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

index.html | Owner: cody | Views: 77 | Comments: 0 | Open/ Source 781 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

index.html | Owner: cody | Views: 16 | Comments: 0 | Open/ Source 1.04 KB

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>C

index.html | Owner: cody | Views: 83 | Comments: 0 | Open/ Source 3.55 KB

<!DOCTYPE html> <html> <head> <title>Pomodoro Clock</title> <link rel="stylesheet" href="https://maxcdn.boot

utils.py | Owner: abh | Views: 67 | Comments: 0 | Open/ Source 5.88 KB

from random import randint from requests import get from models import users, files, db from os import remove, system, path from

emojis.html | Owner: dakshbadal1379 | Views: 123 | Comments: 0 | Open/ Source 62 B

these are emojies <h1>❤&#128507;😊</h1> <q> wirking? </q>

index.php | Owner: djdj | Views: 10 | Comments: 0 | Open/ Source 1.14 KB

<!Doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, init

index.html | Owner: cody | Views: 84 | Comments: 0 | Open/ Source 1.14 KB

<!--index.html--> <!DOCTYPE html> <html lang="en"> <head> <title>Maths Game</title> <meta charset="utf-8"> <meta na

signup 01 | Owner: cody | Views: 76 | Comments: 0 | Open/ Source 3.5 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Signup</title> <meta

34.txt | Owner: coderai | Views: 1 | Comments: 0 | Open/ Source 1.22 KB

* **Name:** CoderAI * **Industry:** Software Development * **Headquarters:** San Francisco, California * **Year Founded:** 2016

sum.py | Owner: abh | Views: 115 | Comments: 2 | Open/ Source 314 B

def sum(*nums): s = 0 for i in nums: s += i return s def sum(*nums: int): s = 0 for n in nums:

index.html | Owner: cody | Views: 27 | Comments: 0 | Open/ Source 9.22 KB

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>I

index.html | Owner: cody | Views: 8 | Comments: 0 | Open/ Source 408 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>C

index.html | Owner: cody | Views: 64 | Comments: 0 | Open/ Source 1.17 KB

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

are_anagrams.py | Owner: abh | Views: 57 | Comments: 0 | Open/ Source 789 B

TESTCCASES = [ { "positional": ("string", "string",), "keyword": {}, "return": True, "msg":

locked-file.html | Owner: abh | Views: 91 | Comments: 0 | Open/ Source 505 B

<!DOCTYPE html> <html> <head> <title>File is locked</title> {% include "stylesheet.html" %} </head> <body> <h1>HTMLi

LeetCode - Squares of a Sorted Array - Python | Owner: abh | Views: 67 | Comments: 0 | Open/ Source 129 B

class Solution: def sortedSquares(self, nums: List[int]) -> List[int]: return list(sorted(map(lambda a:a*a, nums))

ncr.py | Owner: abh | Views: 108 | Comments: 0 | Open/ Source 290 B

def ncr(n, r): numerator = 1 denominator = 1 for i in range(r): numerator *= n - i denominator *= i

index.html | Owner: cody | Views: 30 | Comments: 0 | Open/ Source 640 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>I

index.html | Owner: cody | Views: 74 | Comments: 0 | Open/ Source 349 B

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

Switch-Case.php | Owner: djdj | Views: 63 | Comments: 0 | Open/ Source 331 B

<?php $age = 30; switch($age){ case 18: echo "You are eligible for vote\n"; break;

index.html | Owner: cody | Views: 102 | Comments: 0 | Open/ Source 2.87 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Login 01</title> <meta name="v

Q342_Power_of_Four.py | Owner: djdj | Views: 99 | Comments: 1 | Open/ Source 95 B

def isPowerOfTwo(self, n): for i in range(0,31): if n == 4**i: return 1 return 0

Q7_Reverse_Integer.py | Owner: djdj | Views: 83 | Comments: 0 | Open/ Source 286 B

def reverse(self, x): if x > (2**30) or x < (-2**31)+1: return 0 m = 0 if x < 0: x = x * (-1) m = 1 s = 0

index.html | Owner: cody | Views: 62 | Comments: 0 | Open/ Source 1.4 KB

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Pattern Generator</title> <link rel="stylesheet" hr

index.html | Owner: cody | Views: 77 | Comments: 0 | Open/ Source 4.39 KB

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Guess Who Game</title> <link rel="stylesh

index.html | Owner: cody | Views: 17 | Comments: 0 | Open/ Source 1.2 KB

<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <ti

LeetCode - Merge Sorted Array - Python | Owner: abh | Views: 10 | Comments: 0 | Open/ Source 277 B

class Solution: def merge(self, nums1: List[int], m: int, nums2: List[int], n: int) -> None: """ Do not r

git-clone.html | Owner: abh | Views: 102 | Comments: 0 | Open/ Source 1.51 KB

<!DOCTYPE html> <html> <head> <title>Git Clone</title> {% include 'stylesheet.html' %} <style> </style> </h

Delete-The-Record.php | Owner: djdj | Views: 5 | Comments: 0 | Open/ Source 1.08 KB

<?php // Connecting to the Db $servername = "localhost"; $username = "root"; $password = ""; $database = "f

index.html | Owner: cody | Views: 65 | Comments: 0 | Open/ Source 489 B

<!DOCTYPE html> <html lang="en" onclick="jump()"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" conte

LeetCode - Add Two Integers - Ruby | Owner: abh | Views: 155 | Comments: 1 | Open/ Source 119 B

# @param {Integer} num1 # @param {Integer} num2 # @return {Integer} def sum(num1, num2) return num1 + num2 end

index.html | Owner: cody | Views: 10 | Comments: 0 | Open/ Source 776 B

<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <ti

index.html | Owner: cody | Views: 64 | Comments: 0 | Open/ Source 2.02 KB

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

index.html | Owner: cody | Views: 78 | Comments: 0 | Open/ Source 598 B

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

LeetCode - First Letter to Appear Twice - JavaScript | Owner: abh | Views: 39 | Comments: 0 | Open/ Source 241 B

/** * @param {string} s * @return {character} */ var repeatedCharacter = function(s) { seen = []; for (let i=0;

index.html | Owner: cody | Views: 78 | Comments: 0 | Open/ Source 1.93 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"

gklg.png | Owner: abh | Views: 7 | Comments: 0 | Open/ Source 0 B

38.txt | Owner: coderai | Views: 1 | Comments: 0 | Open/ Source 1.56 KB

The **[r/l8gc](https://www.reddit.com/r/l8gc/)** subreddit is a community for discussing the latest news and developments in th

index.html | Owner: cody | Views: 11 | Comments: 0 | Open/ Source 1.08 KB

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>A

index.html | Owner: cody | Views: 79 | Comments: 0 | Open/ Source 1.59 KB

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

index.html | Owner: cody | Views: 88 | Comments: 0 | Open/ Source 1.56 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Toast</title> <meta name="vie

If-else.php | Owner: djdj | Views: 73 | Comments: 0 | Open/ Source 776 B

<?php $a = 5; $b = 2000; $c = 2016; if($a > 2){ echo "a is greater than 2\n"; } else{

Snake.html | Owner: amar | Views: 121 | Comments: 0 | Open/ Source 5.33 KB

<canvas id="gc" width="600" height="600"></canvas> <script> window.onload=function() { canv=document.getElementById("gc");

15.txt | Owner: coderai | Views: 1 | Comments: 0 | Open/ Source 1.06 KB

The r/pldu subreddit is an online community associated with the Programming Languages Discord United server. It serves as a for

index.html | Owner: cody | Views: 18 | Comments: 0 | Open/ Source 780 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>P

sortable list | Owner: cody | Views: 67 | Comments: 0 | Open/ Source 971 B

<!-- Reference: https://developer.mozilla.org/en-US/docs/Web/API/HTML_Drag_and_Drop_API --> <!DOCTYPE html> <html lang="en">

Condition | Owner: djdj | Views: 160 | Comments: 0 | Open/ Source 865 B

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

index.html | Owner: cody | Views: 55 | Comments: 0 | Open/ Source 2.55 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>login</title> <script type="module" src="https://un

index.html | Owner: cody | Views: 79 | Comments: 0 | Open/ Source 4.53 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Cards</title> <link rel="prec

registration.html | Owner: abh | Views: 99 | Comments: 0 | Open/ Source 389 B

<!-- registration.html --> <form action="/action/registration" method="POST"> <input type="text" name="username" placeholder="us

index.html | Owner: cody | Views: 84 | Comments: 0 | Open/ Source 378 B

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

No body loves you | Owner: abh | Views: 269 | Comments: 0 | Open/ Source 282 B

<head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <title>Nobody loves you</title> <center>

index.html | Owner: cody | Views: 70 | Comments: 0 | Open/ Source 1.0 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />

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

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