HTMLify your dreams

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

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

index.html | Owner: cody | Views: 109 | Comments: 0 | Open/ Source 1.06 KB

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

post.html | Owner: abh | Views: 174 | Comments: 0 | Open/ Source 4.83 KB

<!-- post.html --> {% extends "base.html" %} {% block title %}{{ post.title }}{% endblock %} {% block meta %}{{ post.meta }}{

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

index.html | Owner: cody | Views: 105 | Comments: 0 | Open/ Source 712 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="uts-8"> <title>OLX Clone</title> <link rel="stylesheet" href=

toggle1.html | Owner: cody | Views: 214 | Comments: 0 | Open/ Source 16.59 KB

<label> <input type="checkbox"> <span class="custom__checkbox"> <span class="custom__checkbox__face"> <span cl

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

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

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

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

LeetCode - Find Followers Count - MySQL | Owner: abh | Views: 183 | Comments: 0 | Open/ Source 103 B

SELECT user_id, count(follower_id) as followers_count FROM Followers GROUP BY user_id ORDER BY user_id;

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

Q2427_Number_of_Common_Factors.py | Owner: djdj | Views: 135 | 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

npr.py | Owner: abh | Views: 279 | Comments: 0 | Open/ Source 153 B

def npr(n, r): return factorial(n) // factorial(n-r) def npr(n, r): result = 1 for i in range(r): result *=

README.md | Owner: abh | Views: 139 | Comments: 1 | Open/ Source 10 B

# HTMLify

index.html | Owner: cody | Views: 111 | Comments: 0 | Open/ Source 11.58 KB

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

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

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

login.html | Owner: abh | Views: 133 | Comments: 0 | Open/ Source 769 B

<!DOCTYPE html> <html> <head> <title>Login</title> {% include "stylesheet.html" %} <style> </style> </head> <bo

index.html | Owner: cody | Views: 62 | Comments: 0 | Open/ Source 472 B

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

innerHtml.html | Owner: shubh | Views: 133 | 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: 121 | Comments: 0 | Open/ Source 1.07 KB

<!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 707 B

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

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

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

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

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

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

sticky navigation | Owner: cody | Views: 127 | Comments: 0 | Open/ Source 2.11 KB

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

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

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Drag & drop</title> <link rel=

2.txt | Owner: coderai | Views: 94 | Comments: 13 | Open/ Source 906 B

**Coderai** is a company that provides AI-powered code generation tools. It was founded in 2021 by a team of engineers and rese

Hello.html | Owner: shivam | Views: 150 | Comments: 0 | Open/ Source 16 B

<h1> Hello </h1>

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

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

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

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

Update-Data-Where-Clause.php | Owner: djdj | Views: 48 | Comments: 0 | Open/ Source 1.33 KB

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

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

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

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

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

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

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

leap_year.py | Owner: djdj | Views: 144 | Comments: 0 | Open/ Source 221 B

def is_leap(year): if year%100==0: if year%400==0: return True else: return False

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

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

home-template.html | Owner: abh | Views: 171 | Comments: 0 | Open/ Source 3.79 KB

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

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

Function.php | Owner: djdj | Views: 115 | Comments: 0 | Open/ Source 627 B

<?php //Function in php $ram = [90, 88, 85, 95, 91]; $sum = marks($ram); // function call $ave = avera($ram);//

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

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

Q1757_Recyclable_and_Low_Fat_Products.sql | Owner: djdj | Views: 236 | Comments: 9 | Open/ Source 74 B

select product_id from Products where low_fats = 'Y' and recyclable = 'Y'

image.html | Owner: priyanka | Views: 175 | Comments: 0 | Open/ Source 119 B

<img src="/abh/artizote.png"/> <p>This is another sample image for testing</p> <img src="/priyanka/test-image.png" />

index.html | Owner: cody | Views: 33 | 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: 112 | Comments: 0 | Open/ Source 706 B

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

LeetCode - Patients With a Condition - MySQL | Owner: abh | Views: 187 | Comments: 4 | Open/ Source 128 B

# Write your MySQL query statement below SELECT * FROM patients WHERE conditions LIKE '% DIAB1%' or conditions LIKE 'DIAB1%' ;

| 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: 107 | Comments: 0 | Open/ Source 3.25 KB

<!-- Based on Mobile-First Responsive Build (with CSS Grid) by Shaun Pelling - The Net Ninja (2020) see: https://www.youtube.com

index.html | Owner: cody | Views: 59 | Comments: 0 | Open/ Source 1.5 KB

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

john.html | Owner: dakshbadal1379 | Views: 32 | Comments: 0 | Open/ Source 4.83 KB

<!DOCTYPE html> <html> <head> <title>Birth Certificate Manual</title> <style> body { font-family: Arial, sans-serif;

Get-Method.php | Owner: djdj | Views: 101 | Comments: 0 | Open/ Source 408 B

<?php if($_SERVER['REQUEST_METHOD'] == 'GET'){//if (isset($_GET)){ $name = $_GET['name']; $email = $_GET['em

index.html | Owner: cody | Views: 59 | Comments: 0 | Open/ Source 372 B

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

sum.py | Owner: abh | Views: 705 | 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: 98 | Comments: 0 | Open/ Source 714 B

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

is_pangram.py | Owner: abh | Views: 120 | Comments: 0 | Open/ Source 279 B

def is_pangram(text): letters = "abcdefghijklmnopqrstuvwxyz" for char in text: if not char.lower() in letters:

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

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

Q181_Employees_Earning_More_Than_Their_Managers.sql | Owner: djdj | Views: 160 | Comments: 0 | Open/ Source 104 B

SELECT e.name AS Employee FROM Employee e, Employee a WHERE e.managerID = a.id AND e.salary > a.salary;

index.html | Owner: itintern | Views: 8 | Comments: 0 | Open/ Source 6.73 KB

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

index.html | Owner: cody | Views: 54 | Comments: 0 | Open/ Source 422 B

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

search-result.html | Owner: abh | Views: 123 | Comments: 0 | Open/ Source 775 B

<!-- search-result.html --> <form class="search-form" action="/search" method="GET" style="margin:20p;"> <input type="text" name

index.html | Owner: cody | Views: 101 | Comments: 0 | Open/ Source 839 B

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

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

instagram.html | Owner: cody | Views: 134 | Comments: 0 | Open/ Source 1.09 KB

<!DOCTYPE html> <html> <head> <title>T Y P I N G ProWess</title> <meta charset="UTF-8"> <meta name="viewport" content="wid

44.txt | Owner: coderai | Views: 58 | Comments: 0 | Open/ Source 1.68 KB

**Company Name:** Coderai **Contact Information:** * **Email:** support@coderai.com * **Website:** https://coderai.com/ **Ad

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

29.txt | Owner: coderai | Views: 57 | Comments: 0 | Open/ Source 2.8 KB

* **I can help you learn new programming languages.** If you're interested in learning a new programming language, I can provid

signup.php | Owner: djdj | Views: 84 | Comments: 0 | Open/ Source 6.33 KB

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

index.html | Owner: cody | Views: 55 | Comments: 0 | Open/ Source 786 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: 106 | Comments: 0 | Open/ Source 395 B

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

Achievements | Owner: abh | Views: 215 | Comments: 0 | Open/ Source 5.56 KB

<!DOCTYPE html> <html> <head> <title>Achievements - Aman Babu Hemant</title> <meta name="viewport" content="width=de

Ecommerce Assignment 2 | Owner: djdj | Views: 558 | Comments: 0 | Open/ Source 3.51 MB

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

<!-- Awesome Vanilla Javascript Image Slider! by Simo Edwin - Dev Ed (2021) see: https://www.youtube.com/watch?v=ee8y1IV6pOI -->

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

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

index.html | Owner: cody | Views: 58 | Comments: 0 | Open/ Source 385 B

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

index.html | Owner: cody | Views: 131 | Comments: 0 | Open/ Source 2.13 KB

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

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

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

LeetCode - Maximum Odd Binary Number - Python | Owner: abh | Views: 110 | Comments: 0 | Open/ Source 217 B

class Solution: def maximumOddBinaryNumber(self, s: str) -> str: if s.count("1") == 1: return ("0" *

index.html | Owner: cody | Views: 102 | Comments: 0 | Open/ Source 401 B

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

index.html | Owner: cody | Views: 56 | Comments: 0 | Open/ Source 1.66 KB

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

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

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

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

basic-webpage-structure.html | Owner: demo | Views: 195 | 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

notifications.html | Owner: abh | Views: 118 | Comments: 0 | Open/ Source 947 B

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

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

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

Character counter..html | Owner: sachinthakur | Views: 164 | Comments: 0 | Open/ Source 2.11 KB

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

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

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

encrypt_xor_cipher.py | Owner: abh | Views: 109 | 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: 128 | Comments: 0 | Open/ Source 564 B

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

new.html | Owner: itintern | Views: 34 | 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">

Q509_Fibonacci_Series.c | Owner: djdj | Views: 145 | Comments: 0 | Open/ Source 123 B

24.txt | Owner: coderai | Views: 61 | Comments: 0 | Open/ Source 1.08 KB

- **Q&A:** Answering questions on various topics. - **Text Generation:** Creating original text, such as stories, articles, po

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

divisors.py | Owner: abh | Views: 108 | Comments: 0 | Open/ Source 326 B

def divisors(n: int): ds = [] for i in range(1, n+1): if not n % i: ds.append(i) return ds def

index.html | Owner: cody | Views: 47 | Comments: 0 | Open/ Source 684 B

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

Profile Card | Owner: cody | Views: 141 | Comments: 0 | Open/ Source 1.19 KB

<!DOCTYPE html> <html> <head> <style> body { font-family: 'Arial', sans-serif; display: flex; a

index.html | Owner: cody | Views: 101 | Comments: 0 | Open/ Source 969 B

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

Cursoreffect.html | Owner: shubh | Views: 95 | Comments: 0 | Open/ Source 664 B

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

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

CALCUEOT.html | Owner: dakshbadal1379 | Views: 173 | Comments: 0 | Open/ Source 5.29 KB

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

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

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

t.html | Owner: djdj | Views: 188 | 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

search input 01 | Owner: cody | Views: 122 | Comments: 0 | Open/ Source 523 B

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

index.html | Owner: cody | Views: 126 | 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: 122 | Comments: 0 | Open/ Source 2.93 KB

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

index.html | Owner: cody | Views: 101 | 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: 103 | Comments: 0 | Open/ Source 3.67 KB

<!-- Build Glass Website with HTML and CSS Tutorial by Simo Edwin - Dev Ed (2021) see: https://www.youtube.com/watch?v=O7WbVj5ap

index.html | Owner: cody | Views: 67 | Comments: 0 | Open/ Source 3.66 KB

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

index.html | Owner: cody | Views: 105 | Comments: 0 | Open/ Source 363 B

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Bubble Shooter Game</title> <!-- Linking CSS & JS --> <script type='

index.html | Owner: cody | Views: 44 | Comments: 0 | Open/ Source 531 B

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

index.html | Owner: cody | Views: 62 | Comments: 0 | Open/ Source 971 B

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

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

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

index.html | Owner: cody | Views: 114 | Comments: 0 | Open/ Source 5.49 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: 106 | Comments: 0 | Open/ Source 5.71 KB

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

index.html | Owner: cody | Views: 45 | Comments: 0 | Open/ Source 595 B

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

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

LeetCode - Time Needed to Rearrange a Binary String - Python | Owner: abh | Views: 135 | Comments: 0 | Open/ Source 200 B

class Solution: def secondsToRemoveOccurrences(self, s: str) -> int: secs = 0 while "01" in s:

32.txt | Owner: coderai | Views: 59 | Comments: 0 | Open/ Source 953 B

* **Purpose:** The link leads to a video on YouTube that discusses the experience of a woman who removed her breast implants af

yoursfile.txt | Owner: djdj | Views: 135 | Comments: 0 | Open/ Source 28 B

this is testing file create

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

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

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

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

49.txt | Owner: coderai | Views: 54 | Comments: 0 | Open/ Source 1.08 KB

There are a few reasons why you might not have access to a subreddit. You may have been banned from the subreddit by a moderato

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

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

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

<!-- Based on Create a Website With Video Background | HTML & CSS by Brad Traversy (2021) see: https://www.youtube.com/watch?v=8

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

Nenem.html | Owner: amar | Views: 177 | Comments: 0 | Open/ Source 4.19 KB

<!DOCTYPE html> <html> <head> <title>Basic Snake HTML Game</title> <meta charset="UTF-8"> <style> html, body {

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

<!DOCTYPE html> <html lang="en"> <!-- Mirrored from amazing-js-projects.netlify.app/stick hero game by yash-25log/ by HTTrack W

index.html | Owner: cody | Views: 55 | Comments: 0 | Open/ Source 536 B

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

profile.html | Owner: abh | Views: 141 | Comments: 0 | Open/ Source 2.27 KB

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

bisection_method.py | Owner: djdj | Views: 165 | Comments: 0 | Open/ Source 709 B

from math import* def fun(x): return(x**3-4*x-9) def bisection(x0,x1): i=1 for _ in range(max): x2 =