HTMLify your dreams

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

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

insertElement.html | Owner: shubh | Views: 134 | Comments: 0 | Open/ Source 1.1 KB

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

is_even.py | Owner: abh | Views: 186 | Comments: 0 | Open/ Source 290 B

def is_even(n: int) -> bool: if n == 1: return False if n == 0: return True return is_even(n-2) def

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

CHECK PANGRAM BY C | Owner: sunny_jain | Views: 100 | Comments: 0 | Open/ Source 927 B

//WRITE a program to check if string is pangram? // input-"the quick brown fox jumps over the lazy dog" //output- is a pangra

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

sum.py | Owner: abh | Views: 701 | 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:

58.txt | Owner: coderai | Views: 61 | Comments: 0 | Open/ Source 2.08 KB

**1. Knowledge and Expertise Exchange:** * Establish regular webinars or workshops to share research findings, industry insigh

index.html | Owner: cody | Views: 41 | Comments: 0 | Open/ Source 1.21 KB

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

index.html | Owner: djdj | Views: 155 | 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: 61 | Comments: 0 | Open/ Source 15.42 KB

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

index.html | Owner: cody | Views: 99 | Comments: 0 | Open/ Source 1.94 KB

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

Resume Builder | Owner: cody | Views: 89 | Comments: 0 | Open/ Source 2.2 KB

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

rcck3uh1ux.html | Owner: dakshbadal1379 | Views: 40 | Comments: 0 | Open/ Source 2.39 KB

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

21.txt | Owner: coderai | Views: 54 | Comments: 0 | Open/ Source 1.36 KB

In Python, a string is a sequence of characters enclosed in single (') or double (") quotes. Strings are used to represent text

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

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

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

Q43_Multiply_Strings.py | Owner: djdj | Views: 123 | Comments: 0 | Open/ Source 104 B

def multiply(self, num1, num2): num1 = int(num1) num2 = int(num2) a = num1 * num2 return str(a)

index.html | Owner: cody | Views: 100 | Comments: 0 | Open/ Source 866 B

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

index.html | Owner: cody | Views: 121 | Comments: 0 | Open/ Source 861 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: 147 | Comments: 0 | Open/ Source 2.87 KB

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

index.html | Owner: cody | Views: 60 | Comments: 0 | Open/ Source 429 B

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

Beautiful Card | Owner: cody | Views: 140 | Comments: 0 | Open/ Source 1.06 KB

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

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

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

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

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

index.html | Owner: dakshbadal1379 | Views: 58 | Comments: 0 | Open/ Source 3.21 KB

<!DOCTYPE html> <html lang="en"> <head> <!-- Design by foolishdeveloper.com --> <title>Glassmorphism login Form Tutori

index.html | Owner: cody | Views: 132 | Comments: 0 | Open/ Source 900 B

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

index.html | Owner: cody | Views: 53 | Comments: 0 | Open/ Source 1022 B

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

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

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

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

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

AnswerSheet | Owner: djdj | Views: 165 | Comments: 0 | Open/ Source 618 B

Answer Keys || Date:07-10-2023 Question Answer Q1. C Q2. B Q3. B Q4. C Q5. A Q6. C Q7

hex.html | Owner: cody | Views: 128 | Comments: 0 | Open/ Source 999 B

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

Horizontal Scroll Snap | Owner: cody | Views: 174 | Comments: 0 | Open/ Source 761 B

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

LeetCode - Article Views I - MySQL | Owner: abh | Views: 165 | Comments: 0 | Open/ Source 90 B

SELECT DISTINCT author_id AS id FROM Views WHERE author_id = viewer_id ORDER BY author_id;

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

profile-page-template.html | Owner: abh | Views: 155 | 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

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

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

login.html | Owner: tanishkak | Views: 161 | Comments: 0 | Open/ Source 1.06 KB

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

db.php | Owner: djdj | Views: 51 | Comments: 0 | Open/ Source 287 B

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

index.html | Owner: cody | Views: 103 | Comments: 0 | Open/ Source 4.11 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Dropdown Menu 02</title> <link

home.html | Owner: abh | Views: 190 | Comments: 0 | Open/ Source 881 B

b'<!DOCTYPE html>\n<html>\n<head>\n <title>HTMLify your dreams</title>\n {% include "stylesheet.html" %}\n</head>\n<body>\

Nested Tables | Owner: cody | Views: 134 | 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: 111 | Comments: 0 | Open/ Source 2.05 KB

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

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

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

LeetCode - Reverse Only Letters - Python | Owner: abh | Views: 150 | Comments: 0 | Open/ Source 393 B

class Solution: def reverseOnlyLetters(self, s: str) -> str: s = list(s) chars = "qwertyuiopasdfghjklzxcv

index.html | Owner: deepika | Views: 257 | Comments: 0 | Open/ Source 1016 B

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

index.html | Owner: cody | Views: 104 | Comments: 0 | Open/ Source 7.67 KB

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

3.txt | Owner: coderai | Views: 54 | Comments: 0 | Open/ Source 958 B

**Link 1:**<br><br>* **What:** The link references a subreddit on the Reddit platform: r/AmItheAsshole.<br>* **Explanation:**<br

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

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

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

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

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

<!DOCTYPE html> <html lang="en"> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <titl

LeetCode - Allow One Function Call - JavaScript | Owner: abh | Views: 84 | Comments: 0 | Open/ Source 415 B

/** * @param {Function} fn * @return {Function} */ var once = function(fn) { let called = false; return function(.

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

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

index.html | Owner: cody | Views: 104 | Comments: 0 | Open/ Source 1.03 KB

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

fs7FrhHe.html | Owner: cody | Views: 157 | Comments: 0 | Open/ Source 25.85 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Chat P2P avec WebRTC</title> </head> <

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

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

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

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

31.txt | Owner: coderai | Views: 57 | Comments: 0 | Open/ Source 1.69 KB

**Purpose:** A community for discussing Artificial Intelligence (AI) and Machine Learning (ML) **Additional Information:** *

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

# HTMLify

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

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

index.html | Owner: cody | Views: 115 | Comments: 0 | Open/ Source 571 B

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

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

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

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

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

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

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

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

frames = [ """

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

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

extras.html | Owner: abh | Views: 120 | Comments: 0 | Open/ Source 98 B

<!-- Extras file, containts of this file will be available in all templates just above </head> -->

26.txt | Owner: coderai | Views: 47 | Comments: 0 | Open/ Source 1.22 KB

* **Coding:** You can ask Coder AI questions like "How do I write a function to sort a list of numbers?" or "Can you help me de

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

indes.html | Owner: dakshbadal1379 | Views: 147 | Comments: 0 | Open/ Source 2.32 KB

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

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

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

index.html | Owner: cody | Views: 114 | Comments: 0 | Open/ Source 3.02 KB

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

| Owner: itintern | Views: 7 | Comments: 0 | Open/ Source 7.23 KB

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

52.txt | Owner: coderai | Views: 57 | Comments: 0 | Open/ Source 964 B

* **Community Support:** Ask questions, seek assistance, and share insights with fellow TXQL enthusiasts. * **Knowledge Sharin

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

<!-- search-result.html --> <!DOCTYPE html> <html> <head> <title>HTMLify Search - {{ q }}</title> {% include "stylesheet

index.html | Owner: cody | Views: 113 | 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: 108 | Comments: 0 | Open/ Source 1.33 KB

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

[FIX] CSS ISSUE | Owner: abh | Views: 168 | Comments: 0 | Open/ Source 405 B

<!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css" href="css-issue.css"> <title>CSS issue fixed</t

index.html | Owner: cody | Views: 122 | Comments: 0 | Open/ Source 1.57 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: 143 | Comments: 0 | Open/ Source 331 B

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

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

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

about.html | Owner: tanishkak | Views: 14 | Comments: 0 | Open/ Source 4.88 KB

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

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

what's_your_name.py | Owner: djdj | Views: 145 | Comments: 0 | Open/ Source 120 B

def print_full_name(first_name,last_name): print("Hello",first_name,last_name,end='! You just delved into python.')

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

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

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

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

index.html | Owner: cody | Views: 58 | Comments: 0 | Open/ Source 7.49 KB

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

galery-05 | Owner: cody | Views: 121 | 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: 132 | Comments: 0 | Open/ Source 378 B

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

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

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

LeetCode - Number of Laser Beams in a Bank - Python | Owner: abh | Views: 129 | Comments: 0 | Open/ Source 322 B

class Solution: def numberOfBeams(self, bank: List[str]) -> int: beams = 0 pre_lesers = 0 for fl

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

index.html | Owner: cody | Views: 100 | 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: 35 | Comments: 0 | Open/ Source 1.96 KB

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

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

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

LeetCode - Fibonacci Number - Rust | Owner: abh | Views: 190 | Comments: 1 | Open/ Source 354 B

impl Solution { pub fn fib(n: i32) -> i32 { if (n == 0){ return 0; } if (n == 1){

index.html | Owner: cody | Views: 123 | Comments: 0 | Open/ Source 2.2 KB

<!-- Based on Chat Interface by Florin Pop (2019) see: https://www.florin-pop.com/blog/2019/04/chat-interface/ --> <!DOCTYPE ht

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

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

index.html | Owner: cody | Views: 50 | Comments: 0 | Open/ Source 991 B

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

best-programming-video-templates.mp4 | Owner: amar | Views: 71 | Comments: 1 | Open/ Source 1005.8 KB

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

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

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 =

index.html | Owner: cody | Views: 113 | Comments: 0 | Open/ Source 1.1 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: 120 | 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_socials.html | Owner: cody | Views: 126 | Comments: 0 | Open/ Source 2.87 KB

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

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

index.html | Owner: cody | Views: 96 | Comments: 0 | Open/ Source 1.55 KB

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

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

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

Q231_Power_of_two.py | Owner: djdj | Views: 131 | Comments: 0 | Open/ Source 95 B

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

home.html | Owner: cody | Views: 110 | Comments: 0 | Open/ Source 1.35 KB

<!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css" href="homecss.css"> </head> <body> <header> <div cl

Drawing App | Owner: cody | Views: 107 | Comments: 0 | Open/ Source 603 B

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

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

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

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

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

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

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

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

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

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

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

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

index.html | Owner: cody | Views: 50 | Comments: 0 | Open/ Source 723 B

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

Create Button in Js | Owner: djdj | Views: 266 | Comments: 0 | Open/ Source 588 B

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

index.html | Owner: cody | Views: 121 | 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: 45 | 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: 111 | Comments: 0 | Open/ Source 567 B

<!-- Based on Pure CSS Tooltip by Florin Pop (2019) see: https://www.florin-pop.com/blog/2019/05/pure-css-tooltip/ --> <!DOCTYP

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

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

Create-some-new.php | Owner: djdj | Views: 124 | Comments: 0 | Open/ Source 6.59 KB

<?php $add = false; $update = false; $delete = false; // Connecting to the Db $servername = "localhost";

43.txt | Owner: coderai | Views: 57 | Comments: 0 | Open/ Source 1.82 KB

**Key Features:** * **Error Reduction:** Flags coding errors for early detection and resolution, ensuring code stability. * **

index.html | Owner: cody | Views: 116 | Comments: 0 | Open/ Source 2.98 KB

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

index.html | Owner: cody | Views: 61 | Comments: 0 | Open/ Source 5.39 KB

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