HTMLify your dreams

Filter Options:
index.html | Owner: cody | Views: 140 | 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

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

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

Sum of prime numbers in given range | Owner: cody | Views: 118 | Comments: 0 | Open/ Source 274 B

def is_prime(n): if n < 2: return False for i in range(2, n//2+1): if not n%i: return F

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

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

index.html | Owner: cody | Views: 34 | Comments: 0 | Open/ Source 44.1 KB

<!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: 118 | Comments: 0 | Open/ Source 1.34 KB

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

index.html | Owner: cody | Views: 130 | 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 2.41 KB

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

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

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

index.html | Owner: cody | Views: 141 | Comments: 0 | Open/ Source 12.45 KB

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

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

bulb.html | Owner: shubh | Views: 164 | Comments: 0 | Open/ Source 859 B

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

Primenumber.html | Owner: amar | Views: 232 | Comments: 0 | Open/ Source 867 B

<script type="text/javascript"> // program to check if a number is prime or not // take input from the user const

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

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

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

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

setAttribute.html | Owner: shubh | Views: 185 | Comments: 0 | Open/ Source 569 B

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

| 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: 152 | Comments: 0 | Open/ Source 11.09 KB

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

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

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

LeetCode- A Number After a Double Reversal - Python | Owner: abh | Views: 201 | Comments: 0 | Open/ Source 128 B

class Solution: def isSameAfterReversals(self, num: int) -> bool: if not num: return True return num % 10

LeetCode - Reformat Date - Python | Owner: abh | Views: 16 | Comments: 0 | Open/ Source 626 B

class Solution: def reformatDate(self, date: str) -> str: days = [ "1st", "2nd", "3rd", "4th", "5th",

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

<!DOCTYPE html> <html lang="en"> <meta http-equiv="content-type" content="text/html;charset=UTF-8" /> <head> <meta charset

Ractangle.html | Owner: shubh | Views: 180 | Comments: 0 | Open/ Source 709 B

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

do-while-loop.php | Owner: djdj | Views: 134 | Comments: 0 | Open/ Source 104 B

<?php //do while loop $a = 0; do { echo $a; $a++; } while ($a <= 10); ?>

index.html | Owner: cody | Views: 118 | Comments: 0 | Open/ Source 1.49 KB

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

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

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

LeetCode - Count Prefix and Suffix Pairs I - Python | Owner: abh | Views: 9 | Comments: 0 | Open/ Source 407 B

class Solution: def isPrefixAndSuffix(self, str1: str, str2: str): return str2.startswith(str1) and str2.endswith(

String.php | Owner: djdj | Views: 169 | Comments: 0 | Open/ Source 1.28 KB

<?php $name = 'SabkaCode'; echo $name; //simple print name echo "\n"; echo "The length of string ".strlen($name

Variable.php | Owner: djdj | Views: 151 | 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

index.html | Owner: cody | Views: 129 | Comments: 0 | Open/ Source 3.93 KB

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

| Owner: itintern | Views: 10 | Comments: 0 | Open/ Source 7.29 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: 131 | Comments: 0 | Open/ Source 1.53 KB

<!-- Based on Fluid Image Pop Up JavaScript Tutorial by Simo Edwin - Dev Ed (2020) see: https://www.youtube.com/watch?v=4SQXOA8Z

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

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

dbconn.php | Owner: djdj | Views: 135 | Comments: 0 | Open/ Source 293 B

<?php $server = "localhost"; $username = "root"; $password = ""; $database = "system"; $conn = mysqli_con

index.html | Owner: cody | Views: 140 | Comments: 0 | Open/ Source 1.46 KB

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

lower.py | Owner: abh | Views: 211 | Comments: 0 | Open/ Source 672 B

def lower(s: str) -> str: u = "QWERTYUIOPASDFGHJKLZXCVBNM" l = "qwertyuiopasdfghjklzxcvbnm" for c in s: if c

36.txt | Owner: coderai | Views: 97 | Comments: 0 | Open/ Source 3.05 KB

___ ___ ___ / \ / \ / \ / \ / \ / \

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

Add-Two-No.php | Owner: djdj | Views: 162 | 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: 143 | 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: 155 | Comments: 0 | Open/ Source 709 B

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

text.html | Owner: lucky | Views: 232 | 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-

LootCode - Letter Combinations of a Phone Number - Python | Owner: abh | Views: 29 | Comments: 0 | Open/ Source 626 B

class Solution: def letterCombinations(self, digits: str) -> List[str]: pad = { "2": "abc",

index.html | Owner: khushi | Views: 122 | Comments: 0 | Open/ Source 1.44 KB

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

index.html | Owner: cody | Views: 165 | Comments: 0 | Open/ Source 578 B

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

index.html | Owner: cody | Views: 129 | Comments: 0 | Open/ Source 1.35 KB

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

dashboard.html | Owner: abh | Views: 183 | Comments: 0 | Open/ Source 1.62 KB

<!DOCTYPE html> <html> <head> <title>Dashboard - {{ session["user"]["username"] }}</title> {% include "stylesheet.html"

index.html | Owner: cody | Views: 149 | Comments: 0 | Open/ Source 856 B

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

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

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

Image Carousel | Owner: cody | Views: 142 | Comments: 0 | Open/ Source 1.33 KB

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

Python Task 2 | Owner: itintern | Views: 6 | Comments: 0 | Open/ Source 7.84 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: 66 | 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

new.html | Owner: itintern | Views: 72 | Comments: 0 | Open/ Source 9.62 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: 133 | Comments: 0 | Open/ Source 546 B

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

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

<!-- Based on Creating a Magazine Layout with CSS by Kevin Powell (2021) see: https://www.youtube.com/watch?v=QJz81yva7r0 --> <

Q2667_Create_Hello_World_Function.js | Owner: djdj | Views: 132 | Comments: 0 | Open/ Source 110 B

var createHelloWorld = function() { return function(...args) { return "Hello World" } };

index.html | Owner: cody | Views: 146 | Comments: 0 | Open/ Source 1.15 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: 140 | 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">

new.css | Owner: itintern | Views: 34 | Comments: 0 | Open/ Source 12.0 KB

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

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

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

file-upload.html | Owner: abh | Views: 159 | Comments: 0 | Open/ Source 936 B

<!DOCTYPE html> <html> <head> <title>Media Upload</title> {% include "stylesheet.html" %} <style> </style> </hea

index.html | Owner: cody | Views: 151 | Comments: 0 | Open/ Source 1.52 KB

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

t.html | Owner: djdj | Views: 244 | Comments: 0 | Open/ Source 2.29 KB

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

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

<!DOCTYPE html> <head> <meta charset="UTF-8"> <title>Typer</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1

index.html | Owner: cody | Views: 151 | Comments: 0 | Open/ Source 1.02 KB

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

LeetCode - Merge Two Sorted Lists - Python | Owner: abh | Views: 15 | Comments: 0 | Open/ Source 1.01 KB

# Definition for singly-linked list. # class ListNode: # def __init__(self, val=0, next=None): # self.val = val

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

| Owner: itintern | Views: 41 | Comments: 0 | Open/ Source 5.01 KB

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

nav.php | Owner: djdj | Views: 148 | Comments: 0 | Open/ Source 3.12 KB

<?php session_start(); ?> <nav class="navbar navbar-expand-lg navbar-dark bg-dark"> <a class="navbar-brand" href="">SabkaCod

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

| Owner: djdj | Views: 16 | Comments: 0 | Open/ Source 329 B

<iframe class="scribd_iframe_embed" title="VB.net practical file" src="https://www.scribd.com/embeds/404192313/content?start_pag

index.html | Owner: itintern | Views: 41 | Comments: 0 | Open/ Source 6.69 KB

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

LeetCode - Circular Sentence - Python | Owner: abh | Views: 17 | Comments: 0 | Open/ Source 333 B

class Solution: def isCircularSentence(self, sentence: str) -> bool: sentence = sentence.split(" ") if se

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

Mr. | Owner: ubataecj | Views: 0 | Comments: 0 | Open/ Source 3 B

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

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

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

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

LeetCode - Words Subsets - Python | Owner: abh | Views: 0 | Comments: 0 | Open/ Source 492 B

class Solution: def wordSubsets(self, words1: List[str], words2: List[str]) -> List[str]: uniwords = [] f

index.php | Owner: djdj | Views: 50 | 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

Img Upload to db and display | Owner: djdj | Views: 170 | Comments: 0 | Open/ Source 2.97 KB

<!DOCTYPE html> <html> <head> <title>File Upload</title> </head> <body> <form action="#" method="post" enctype="mu

index.html | Owner: cody | Views: 122 | Comments: 0 | Open/ Source 680 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: 137 | 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: 71 | 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

Definitely.html | Owner: dakshbadal1379 | Views: 205 | Comments: 0 | Open/ Source 1.25 KB

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

index.html | Owner: cody | Views: 237 | Comments: 0 | Open/ Source 553 B

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

index.html | Owner: cody | Views: 87 | Comments: 0 | Open/ Source 386 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: 119 | Comments: 0 | Open/ Source 1.45 KB

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

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

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

Dbms Unit 4 Notes | Owner: djdj | Views: 193 | Comments: 0 | Open/ Source 322.83 KB

LeetCode - Hamming Distance - Go | Owner: abh | Views: 6 | Comments: 0 | Open/ Source 803 B

func int_to_binary(n int) string { var b string = "" for ;n!=0; { if n % 2 == 0 { b = "0" + b

welcome.php | Owner: djdj | Views: 69 | Comments: 0 | Open/ Source 1.25 KB

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

LeetCode - Shuffle String - Python | Owner: abh | Views: 316 | Comments: 0 | Open/ Source 206 B

class Solution: def restoreString(self, s: str, indices: List[int]) -> str: shuffeld = "" for i in range(

index.html | Owner: cody | Views: 144 | Comments: 0 | Open/ Source 855 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: 127 | Comments: 0 | Open/ Source 819 B

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Dot Target game</title> <link rel="stylesheet" href

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

index.html | Owner: cody | Views: 139 | Comments: 0 | Open/ Source 8.11 KB

<!-- Based on Hulu Webpage Clone | HTML & CSS by Brad Traversy (2021) see: https://www.youtube.com/watch?v=9OVLaEjY-Rc --> <!DO

index.html | Owner: cody | Views: 89 | Comments: 0 | Open/ Source 418 B

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

index.html | Owner: cody | Views: 146 | Comments: 0 | Open/ Source 2.18 KB

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

Wikipedia.html | Owner: cody | Views: 25 | Comments: 0 | Open/ Source 1.35 KB

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

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

<!-- Based on Learn To Build An SVG Animation With CSS by Simo Edwin - Dev Ed (2019) see: https://www.youtube.com/watch?v=gWai7f

index.html | Owner: cody | Views: 132 | Comments: 0 | Open/ Source 1.42 KB

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

index.html | Owner: cody | Views: 75 | Comments: 0 | Open/ Source 1.35 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: 130 | Comments: 0 | Open/ Source 3.75 KB

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

index.html | Owner: cody | Views: 165 | Comments: 0 | Open/ Source 767 B

<!-- Based on CSS Loaders Tutorial by Shaun Pelling - The Net Ninja (2020) see: https://www.youtube.com/watch?v=GFkorypkXsQ&list

HEXADECIMAL TO DECIMAL BY SWITCH CASE | Owner: sunny_jain | Views: 131 | Comments: 0 | Open/ Source 909 B

//hexadecimal to decimal by using switch case #include<math.h> #include<stdio.h> #include<string.h> int main() { char

index.html | Owner: cody | Views: 140 | Comments: 0 | Open/ Source 1.16 KB

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>DragonUncaged - Color Blast!</title> <meta name="vi

home_page.html | Owner: cody | Views: 155 | Comments: 0 | Open/ Source 1.37 KB

<!DOCTYPE html> <html> <head> <title>My Homepage</title> <link rel="stylesheet" href="home_page.css"> </head> <bod

index.html | Owner: cody | Views: 142 | Comments: 0 | Open/ Source 1.25 KB

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

link.html | Owner: dakshbadal1379 | Views: 225 | Comments: 0 | Open/ Source 718 B

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

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

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

index.html | Owner: cody | Views: 161 | Comments: 0 | Open/ Source 995 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: 128 | 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

Insert-Data-In-Table.php | Owner: djdj | Views: 142 | Comments: 0 | Open/ Source 1.53 KB

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

index.html | Owner: cody | Views: 153 | Comments: 0 | Open/ Source 8.35 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Footer 04 Example</title> <me

index.html | Owner: cody | Views: 151 | Comments: 0 | Open/ Source 1.39 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: 112 | Comments: 0 | Open/ Source 7.88 KB

<!-- Based on Design & Build A Website Crash Course by Simo Edwin - Dev Ed (2019) see: https://www.youtube.com/watch?v=EwmvBnR_x

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

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

index_socials.html | Owner: cody | Views: 130 | Comments: 0 | Open/ Source 1.94 KB

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

LeetCode - Separate the Digits in an Array - Python | Owner: abh | Views: 183 | Comments: 0 | Open/ Source 483 B

class Solution: def separateDigits(self, nums: List[int]) -> List[int]: saprated = [] for num in nums:

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

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

innerHtml.html | Owner: shubh | Views: 180 | Comments: 0 | Open/ Source 620 B

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

index.html | Owner: cody | Views: 124 | Comments: 0 | Open/ Source 1.12 KB

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

index.html | Owner: cody | Views: 148 | Comments: 0 | Open/ Source 2.27 KB

<!-- Build Parallax Website With HTML CSS & Javascript by Simo Edwin - Dev Ed (2021) see: https://www.youtube.com/watch?v=Nt70Ld

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

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

39.txt | Owner: coderai | Views: 112 | Comments: 0 | Open/ Source 1.04 KB

```python from transformers import AutoTokenizer, AutoModelForSeq2SeqLM import torch tokenizer = AutoTokenizer.from_pretrained

animated countdown | Owner: cody | Views: 127 | Comments: 0 | Open/ Source 631 B

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

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

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

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