HTMLify your dreams

Filter Options:
cbrt.py | Owner: abh | Views: 279 | Comments: 0 | Open/ Source 37 B

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

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

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

Post-Method.php | Owner: djdj | Views: 238 | Comments: 0 | Open/ Source 413 B

<?php if($_SERVER['REQUEST_METHOD'] == 'POST'){//if (isset($_POST)){ $name = $_POST['name']; $email = $_POST

index.html | Owner: cody | Views: 152 | Comments: 0 | Open/ Source 2.77 KB

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

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

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

Landing Page.html | Owner: shubh | Views: 265 | Comments: 0 | Open/ Source 1.52 KB

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

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

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

Q1667_Fix_Names_in_a_Table.sql | Owner: djdj | Views: 242 | Comments: 0 | Open/ Source 107 B

SELECT user_id, CONCAT(UPPER(LEFT(name,1)),LOWER(SUBSTRING(name,2))) AS name FROM Users ORDER BY user_id;

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

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

index.html | Owner: cody | Views: 42 | Comments: 0 | Open/ Source 6.67 KB

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

LeetCode - Display the First Three Rows - Python | Owner: abh | Views: 24 | Comments: 0 | Open/ Source 110 B

import pandas as pd def selectFirstRows(employees: pd.DataFrame) -> pd.DataFrame: return employees[:3]

LeetCode - Recyclable and Low Fat Products - MySQL | Owner: abh | Views: 221 | Comments: 0 | Open/ Source 74 B

SELECT product_id FROM Products WHERE low_fats = 'Y' AND recyclable = 'Y';

Signinbox.html | Owner: amar | Views: 112 | Comments: 0 | Open/ Source 7.16 KB

index.html | Owner: cody | Views: 192 | Comments: 0 | Open/ Source 4.44 KB

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

text.html | Owner: lucky | Views: 264 | Comments: 0 | Open/ Source 535 B

<HTML> <HEAD> <TITLE>margin</TITLE> </head> <body> <h2><u>This text specify all font property....</u></h2> <p style="Font-

index.html | Owner: cody | Views: 117 | Comments: 0 | Open/ Source 2.23 KB

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

Add-Two-No.php | Owner: djdj | Views: 196 | Comments: 0 | Open/ Source 239 B

<?PhP // php is case insensitive programming lang. //with three variable $a = 10; $b = 5; $c = $a + $b; EcHo ($

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

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

index.html | Owner: cody | Views: 172 | Comments: 0 | Open/ Source 3.13 KB

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

MySQL-Table.php | Owner: djdj | Views: 74 | Comments: 0 | Open/ Source 1.14 KB

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

index.html | Owner: cody | Views: 166 | 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

index.html | Owner: cody | Views: 157 | Comments: 0 | Open/ Source 1.64 KB

<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="css/bootstrap.min.css"> <link rel="stylesheet" hr

LeetCode - Remove Element - Python | Owner: abh | Views: 46 | Comments: 0 | Open/ Source 163 B

class Solution: def removeElement(self, nums: List[int], val: int) -> int: while val in nums: nums.re

tx7w2Ayr.html | Owner: cody | Views: 261 | Comments: 0 | Open/ Source 3.14 KB

<!DOCTYPE html> <html> <head> <title>My Second Webpage</title> <!-- Internal CSS --> <style> /* Her

index.html | Owner: cody | Views: 186 | Comments: 0 | Open/ Source 4.56 KB

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

index.html | Owner: cody | Views: 107 | Comments: 0 | Open/ Source 449 B

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

index.html | Owner: cody | Views: 162 | Comments: 0 | Open/ Source 1.78 KB

<!Doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Dictionary App</title> <meta name="viewport" c

edgemax.html | Owner: cody | Views: 61 | Comments: 0 | Open/ Source 1.33 KB

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

Associative-Array.php | Owner: djdj | Views: 50 | Comments: 0 | Open/ Source 873 B

<?php //Numeric Array or Index Array $arr = array('ram','shiv','kumar','arjun'); echo $arr[0]; echo $arr[1];

innerText.html | Owner: shubh | Views: 230 | Comments: 0 | Open/ Source 639 B

// DOM Manipulation // innerText properties <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name=

index.html | Owner: cody | Views: 171 | Comments: 0 | Open/ Source 647 B

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

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

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

LeetCode - Invalid Tweets - MySQL | Owner: abh | Views: 252 | Comments: 0 | Open/ Source 60 B

SELECT tweet_id FROM Tweets WHERE CHAR_LENGTH(content) > 15;

LeetCode - Number Complement - Python | Owner: abh | Views: 53 | Comments: 0 | Open/ Source 214 B

class Solution: def findComplement(self, num: int) -> int: b = bin(num)[2:] b = b.replace("0", "2")

index.html | Owner: cody | Views: 83 | 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

index.html | Owner: cody | Views: 135 | Comments: 0 | Open/ Source 728 B

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

index.html | Owner: cody | Views: 106 | Comments: 0 | Open/ Source 1.1 KB

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

LeetCode - Two Sum II - Input Array Is Sorted - Python | Owner: abh | Views: 37 | Comments: 0 | Open/ Source 472 B

class Solution: def twoSum(self, numbers: List[int], target: int) -> List[int]: last_i = None for i in ra

sqrt.py | Owner: abh | Views: 229 | Comments: 0 | Open/ Source 507 B

def sqrt(n): return n ** 0.5 def sqrt(n): return n ** (1/2) def sqrt(n :int): i = 0 while i*i < n: i +

index.html | Owner: cody | Views: 149 | Comments: 0 | Open/ Source 1.97 KB

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

index.html | Owner: cody | Views: 178 | Comments: 0 | Open/ Source 1.62 KB

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

index_socials.html | Owner: cody | Views: 163 | Comments: 0 | Open/ Source 2.1 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Sidebar</title> <link rel="preconnect" href="https:

index.html | Owner: cody | Views: 95 | Comments: 0 | Open/ Source 2.14 KB

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

Heart in Box | Owner: abh | Views: 142 | Comments: 0 | Open/ Source 54.12 KB

frames = [ """

web_page_for_group_entry | Owner: light | Views: 77 | Comments: 1 | Open/ Source 2.79 KB

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

LeetCode - Max Consecutive Ones - Python | Owner: abh | Views: 30 | Comments: 0 | Open/ Source 294 B

class Solution: def findMaxConsecutiveOnes(self, nums: List[int]) -> int: m = 0 cc = 0 for n in

index.html | Owner: cody | Views: 168 | Comments: 0 | Open/ Source 15.2 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: 114 | Comments: 0 | Open/ Source 429 B

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

thoughts.html | Owner: priyanka | Views: 380 | Comments: 0 | Open/ Source 1.59 KB

<HTML> <HEAD> <TITLE>Thoughts</TITLE><meta name="viewport" content="width=device-width,initial=scale=1"> </head> <center><h1

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

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

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

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

Snake Game | Owner: sagar | Views: 58 | Comments: 0 | Open/ Source 3.11 KB

#include <stdio.h> #include <stdlib.h> #include <conio.h> // For _kbhit() and _getch() #include <windows.h> // For Sleep()

33.txt | Owner: coderai | Views: 156 | 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: 174 | Comments: 0 | Open/ Source 1.08 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: 117 | Comments: 0 | Open/ Source 403 B

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

index_socials.html | Owner: cody | Views: 173 | Comments: 0 | Open/ Source 2.77 KB

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Profile Card</title> <meta name="viewp

addEventListener.html | Owner: shubh | Views: 223 | Comments: 0 | Open/ Source 756 B

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

eventObject.html | Owner: shubh | Views: 211 | Comments: 0 | Open/ Source 768 B

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

index.html | Owner: cody | Views: 107 | Comments: 0 | Open/ Source 807 B

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

index.html | Owner: cody | Views: 127 | Comments: 0 | Open/ Source 557 B

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

index.html | Owner: cody | Views: 163 | Comments: 0 | Open/ Source 699 B

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

config.py | Owner: abh | Views: 173 | Comments: 0 | Open/ Source 159 B

SECRET_KEY="REPLACE_WITH_YOUR_SECRATE_KEY_OR_RUN_SETUP.PY" SESSION_TOKENS_LIMIT=1024 MAX_FILE_UPLOAD_LIMIT=32 GIT_COMMAND_PATH =

Brook | Owner: light | Views: 8 | Comments: 0 | Open/ Source 4.63 KB

| Owner: djdj | Views: 347 | Comments: 0 | Open/ Source 1.03 KB

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

index.html | Owner: cody | Views: 111 | Comments: 0 | Open/ Source 421 B

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

LeeCode - Rotate String - Python | Owner: abh | Views: 85 | Comments: 0 | Open/ Source 234 B

class Solution: def rotateString(self, s: str, goal: str) -> bool: for _ in range(len(s)): s = s[1:]

Login.php | Owner: djdj | Views: 65 | Comments: 0 | Open/ Source 4.06 KB

<?php // if(isset($_SESSION['loggedin']) || $_SESSION['loggedin'] = true){ // header("location:welcome.php"); //

LeetCode - Check Distances Between Same Letters - Python | Owner: abh | Views: 32 | Comments: 0 | Open/ Source 235 B

class Solution: def checkDistances(self, s: str, distance: List[int]) -> bool: for l in sorted(set(s)):

index.html | Owner: cody | Views: 110 | Comments: 0 | Open/ Source 1.65 KB

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

Chess Game | Owner: djdj | Views: 131 | Comments: 0 | Open/ Source 400 B

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

welcome.html | Owner: abh | Views: 378 | Comments: 0 | Open/ Source 499 B

<h1>Welcome to HTMLify</h1> <p>Here you can share you codes :)<br>And HTML can be parse so you can make your static site here

LeetCode - Find the Number of Good Pairs - Go | Owner: abh | Views: 32 | Comments: 0 | Open/ Source 254 B

func numberOfPairs(nums1 []int, nums2 []int, k int) int { var count int for _, i := range nums1 { for _, j :=

MySQL-Databases-Connection.php | Owner: djdj | Views: 192 | Comments: 0 | Open/ Source 534 B

<?php //Database Connection /*There are two ways to connect to My SQL Database 1. MySQLi extension (for use only m

img3.html | Owner: djdj | Views: 7 | Comments: 0 | Open/ Source 2.08 KB

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

index.html | Owner: cody | Views: 161 | Comments: 0 | Open/ Source 10.8 KB

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

3D Boxes BackGround | Owner: cody | Views: 131 | Comments: 0 | Open/ Source 698 B

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

index.html | Owner: cody | Views: 197 | Comments: 0 | Open/ Source 2.3 KB

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

Quiz App | Owner: cody | Views: 160 | Comments: 0 | Open/ Source 1.26 KB

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

index.html | Owner: djdj | Views: 242 | Comments: 0 | Open/ Source 9.0 KB

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

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

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

index.html | Owner: cody | Views: 164 | Comments: 0 | Open/ Source 1.1 KB

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Color Game</title> <link rel="stylesheet" href="htt

rajasthan.html | Owner: djdj | Views: 6 | Comments: 0 | Open/ Source 207.51 KB

<html><head> <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7o

index.html | Owner: cody | Views: 112 | Comments: 0 | Open/ Source 2.32 KB

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

index.html | Owner: cody | Views: 160 | Comments: 0 | Open/ Source 4.82 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <!-- <link rel="icon" href="%PUBLIC_URL%/favicon1.ico

Signup.php | Owner: djdj | Views: 104 | Comments: 0 | Open/ Source 6.28 KB

<?php // session_start(); // if(isset($_SESSION['loggedin']) || $_SESSION['loggedin'] == true){ // header('location:

LeetCode - Crawler Log Folder - Go | Owner: abh | Views: 17 | Comments: 0 | Open/ Source 313 B

func minOperations(logs []string) int { depth := 0 for _, o := range logs { if o == "../" { if d

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

print "Hello, World!\n";

index.html | Owner: cody | Views: 76 | Comments: 0 | Open/ Source 758 B

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

Q2427_Number_of_Common_Factors.py | Owner: djdj | Views: 208 | Comments: 0 | Open/ Source 176 B

class Solution(object): def commonFactors(self, a, b): c=0 for i in range(1,a+b): if a%i==0 and

welcome.php | Owner: djdj | Views: 74 | Comments: 0 | Open/ Source 150 B

<?php session_start(); if(isset($_SESSION['loggedin']) || $_SESSION['loggedin'] == true){ echo "welcome ".$_SESSION[

| Owner: itintern | Views: 15 | Comments: 0 | Open/ Source 7.18 KB

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

index.html | Owner: cody | Views: 183 | Comments: 0 | Open/ Source 842 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: 108 | Comments: 0 | Open/ Source 377 B

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

index.html | Owner: cody | Views: 152 | Comments: 0 | Open/ Source 637 B

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

arithmetic_operation.py | Owner: djdj | Views: 208 | Comments: 0 | Open/ Source 87 B

a = int(input()) b = int(input()) print(a+b) print(a-b) print(a*b)

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

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

TRX Manager | Owner: abh | Views: 177 | Comments: 0 | Open/ Source 5.1 KB

from datetime import date from os import system, listdir from sys import argv class Transaction: def __init__(self,

LeetCode - Number of Even and Odd Bits - Python | Owner: abh | Views: 44 | Comments: 0 | Open/ Source 305 B

class Solution: def evenOddBit(self, n: int) -> List[int]: ans = [0, 0] for i, v in enumerate(bin(n)[2:][

intro.html | Owner: himanshuyadav | Views: 170 | Comments: 0 | Open/ Source 1.24 KB

<DOC TYPE html> <html> <head> <title>MY FIRST WEBPAGE</title> </head> <body bgcolour="yellow"> <H1>MY PERSONAL

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

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

Name.html | Owner: amar | Views: 116 | Comments: 0 | Open/ Source 2.74 KB

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

LeetCode - Big Countries | Owner: abh | Views: 251 | Comments: 0 | Open/ Source 89 B

SELECT name, population, area FROM world WHERE area >= 3000000 or population >= 25000000;

index.html | Owner: cody | Views: 89 | Comments: 0 | Open/ Source 1.81 KB

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

| Owner: itintern | Views: 29 | Comments: 0 | Open/ Source 7.19 KB

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

index.html | Owner: cody | Views: 158 | Comments: 0 | Open/ Source 933 B

<html> <head> <link rel="stylesheet" href="css/bootstrap.min.css"> <link rel="stylesheet" href="css/main.css

index.html | Owner: cody | Views: 136 | Comments: 0 | Open/ Source 2.12 KB

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

Q1009_Complement_of_Base_10_Integer.py | Owner: djdj | Views: 228 | Comments: 0 | Open/ Source 522 B

def bitwiseComplement(self, num): if num==0: return 1 s = [] while num > 0: r =

index.html | Owner: cody | Views: 98 | Comments: 0 | Open/ Source 1.28 KB

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

| Owner: djdj | Views: 53 | 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

index.html | Owner: cody | Views: 160 | Comments: 0 | Open/ Source 3.03 KB

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

Nested Tables | Owner: cody | Views: 218 | Comments: 0 | Open/ Source 1.04 KB

<!DOCTYPE html> <html> <head> <style> table { border-collapse: collapse; width: 100%; border: 1

index.html | Owner: cody | Views: 93 | Comments: 0 | Open/ Source 2.07 KB

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

r to n converter.html | Owner: sachinthakur | Views: 252 | Comments: 0 | Open/ Source 4.26 KB

<!DOCTYPE html> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css

Comingsoon.Html | Owner: amar | Views: 268 | Comments: 0 | Open/ Source 586 B

</head> <body> <div class="bgimg w3-display-container w3-animate-opacity w3-text-white"> <div class="w3-display-topleft w

Demo Showcase | Owner: demo | Views: 515 | 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

LeetCode - Clear Digits - Python | Owner: abh | Views: 40 | Comments: 0 | Open/ Source 574 B

class Solution: def clearDigits(self, s: str) -> str: ns = "01234567890" s = list(s[::-1]) tl =

index.html | Owner: cody | Views: 90 | Comments: 0 | Open/ Source 1.83 KB

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

qcfc.py | Owner: abh | Views: 337 | Comments: 2 | Open/ Source 2.36 KB

#quiz ans cheker for college #07/10/2023 def ans(): return open("ans.txt").read().split("\n")[:-1] def std(no):

index.html | Owner: cody | Views: 100 | Comments: 0 | Open/ Source 3.68 KB

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

Last.html | Owner: amar | Views: 15 | Comments: 1 | Open/ Source 3.62 KB

index.html | Owner: cody | Views: 95 | Comments: 0 | Open/ Source 565 B

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

| Owner: itintern | Views: 49 | Comments: 0 | Open/ Source 12.0 KB

* { margin: 0; padding: 0; box-sizing: border-box; } html, body { height: 100%; width: 100

index.html | Owner: cody | Views: 186 | Comments: 0 | Open/ Source 955 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: 171 | Comments: 0 | Open/ Source 8.3 KB

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

README.md | Owner: abh | Views: 223 | Comments: 2 | Open/ Source 10 B

# HTMLify

Q1683_Invalid_Tweets.sql | Owner: djdj | Views: 241 | Comments: 0 | Open/ Source 56 B

select tweet_id from tweets where length(content) > 15;

| Owner: itintern | Views: 9 | Comments: 0 | Open/ Source 3.37 KB

<style> #otherInput { display: none; /* Hide the input box initially */ } </style> <form action="" met

index.html | Owner: cody | Views: 96 | Comments: 0 | Open/ Source 362 B

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