HTMLify your dreams

Filter Options:
Alarm App | Owner: cody | Views: 101 | Comments: 0 | Open/ Source 1.1 KB

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

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

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

Operator.php | Owner: djdj | Views: 56 | Comments: 0 | Open/ Source 1.7 KB

<?php /*Operators 1. Arithmetic Operator 2. Assignment Operator 3. Comparison Operator 4. Logical Operator */ $a = 10; $b = 5

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

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

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

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

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> -->

index.html | Owner: cody | Views: 109 | Comments: 0 | Open/ Source 1.05 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: 97 | Comments: 0 | Open/ Source 2.72 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: 46 | Comments: 0 | Open/ Source 417 B

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

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

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

index.html | Owner: cody | Views: 97 | Comments: 0 | Open/ Source 295 B

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Fractal Tree Visualizer</title> <link rel="styleshe

Session.php | Owner: djdj | Views: 117 | Comments: 0 | Open/ Source 219 B

<?php //session //session use for the verification of the user session_start(); $_SESSION['username'] = 'SabkaCo

LeetCode - Largest Positive Integer That Exists With Its Negative - Python | Owner: abh | Views: 63 | Comments: 0 | Open/ Source 274 B

class Solution: def findMaxK(self, nums: List[int]) -> int: nums.sort() l = -1 for n in nums:

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

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

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

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

LeetCode - Counter II - JavaScript | Owner: abh | Views: 74 | Comments: 0 | Open/ Source 633 B

/** * @param {integer} init * @return { increment: Function, decrement: Function, reset: Function } */ var createCounter

index.html | Owner: cody | Views: 50 | Comments: 0 | Open/ Source 466 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: 47 | Comments: 0 | Open/ Source 1.04 KB

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

Q9_Palidrome_Number.py | Owner: djdj | Views: 167 | Comments: 0 | Open/ Source 323 B

class Solution(object): def isPalindrome(self, x): i = x re = 0 """ :type x: int :rt

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

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

TESTS.py | Owner: abh | Views: 107 | Comments: 0 | Open/ Source 1.61 KB

class Test: def __init__(self, function): self.passed = 0 self.failed = 0 self.function = function

index.html | Owner: cody | Views: 115 | Comments: 0 | Open/ Source 7.28 KB

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

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

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

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

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

gcd.py | Owner: abh | Views: 169 | Comments: 0 | Open/ Source 138 B

def gcd(a, b): if b == 0: return a return gcd(b, a % b) def gcd(a, b): while b: a, b = b, a % b

DBMS Assignment | Owner: djdj | Views: 927 | Comments: 0 | Open/ Source 5.76 MB

feedback UI design | Owner: cody | Views: 152 | Comments: 0 | Open/ Source 1.3 KB

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

Beauty Calculator | Owner: abh | Views: 115 | Comments: 0 | Open/ Source 5.22 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Calculating Your Beauty</title> <meta nam

For-Loop.php | Owner: djdj | Views: 115 | Comments: 0 | Open/ Source 80 B

<?php //for loop for ($i=0; $i <= 10; $i++) { echo $i; } ?>

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

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

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

index.html | Owner: demo | Views: 177 | 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

46.txt | Owner: coderai | Views: 54 | Comments: 0 | Open/ Source 2.1 KB

* **Take advantage of the community:** Engage with other users, ask questions, and share your knowledge. * **Explore the docume

30 Days Of JavaScript | Owner: cody | Views: 159 | Comments: 0 | Open/ Source 87.92 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: 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

nav.php | Owner: djdj | Views: 43 | 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

index.html | Owner: cody | Views: 46 | Comments: 0 | Open/ Source 695 B

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

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;

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: 46 | 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>U

Do you notice? | Owner: abh | Views: 139 | Comments: 3 | Open/ Source 35.92 KB

conferm-delete.html | Owner: abh | Views: 141 | Comments: 0 | Open/ Source 530 B

<!--conferm-delete.html--> <h1>Do you really want to delete the file {{ file.name }} at {{ file.path }}?</h1> {% if file.type in

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

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

index.html | Owner: cody | Views: 32 | Comments: 0 | Open/ Source 545 B

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

LeetCode - How Many Numbers Are Smaller Than the Current Number - Python | Owner: abh | Views: 162 | Comments: 0 | Open/ Source 256 B

class Solution: def smallerNumbersThanCurrent(self, nums: List[int]) -> List[int]: smallercount = [] sort

index.html | Owner: cody | Views: 125 | Comments: 0 | Open/ Source 4.64 KB

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

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

Click box & Increase Your Score | Owner: djdj | Views: 423 | Comments: 0 | Open/ Source 5.54 KB

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

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

<!-- Based on Build a Responsive Website by Brad Traversy (2020) see: https://www.youtube.com/watch?v=p0bGHP-PXD4 --> <!DOCTYPE

Mitigate port scanning.py | Owner: abh | Views: 163 | Comments: 1 | Open/ Source 1.1 KB

import subprocess import re import collections import time # Configurações log_file = '/var/log/syslog' threshold = 4 b

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

Php Practical File | Owner: djdj | Views: 30 | Comments: 0 | Open/ Source 5.74 MB

__init__.py | Owner: abh | Views: 98 | Comments: 0 | Open/ Source 21 B

from .TESTS import *

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

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

49.txt | Owner: coderai | Views: 56 | 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

logout.php | Owner: djdj | Views: 66 | Comments: 0 | Open/ Source 237 B

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

Q1667_Fix_Names_in_a_Table.sql | Owner: djdj | Views: 171 | 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: 114 | 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"

index.html | Owner: deepika | Views: 258 | 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: 44 | Comments: 0 | Open/ Source 429 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 2.49 KB

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

Files2.php | Owner: djdj | Views: 114 | Comments: 0 | Open/ Source 556 B

<?php echo "welcome"; $file = fopen('yoursfile.txt','w'); //when this file not exit so automatticay file create & write te

calculating-factorial.cpp | Owner: demo | Views: 158 | Comments: 0 | Open/ Source 259 B

#include <iostream> using namespace std; int factorial(int n) { if (n <= 1) return 1; return n * factoria

home_page.html | Owner: cody | Views: 115 | 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: 81 | Comments: 0 | Open/ Source 749 B

<!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: 146 | 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: 103 | Comments: 0 | Open/ Source 560 B

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

Q367_Valid_Perfect_Square.c | Owner: djdj | Views: 138 | Comments: 0 | Open/ Source 175 B

index.html | Owner: cody | Views: 134 | Comments: 0 | Open/ Source 686 B

<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>Text to Speech Converter</title> <

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

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

Flower For You | Owner: abh | Views: 497 | Comments: 0 | Open/ Source 31.69 KB

frames = [ """ :+*+=. .::::

index.html | Owner: cody | Views: 147 | Comments: 0 | Open/ Source 850 B

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

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"

LeetCode - Find Followers Count - MySQL | Owner: abh | Views: 185 | 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;

HEXADECIMAL TO DECIMAL BY SWITCH CASE | Owner: sunny_jain | Views: 98 | 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: 97 | Comments: 0 | Open/ Source 735 B

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

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

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

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

func.py | Owner: abh | Views: 100 | Comments: 0 | Open/ Source 818 B

TESTCASES = [ { # test case structure "positional": ("arguments", "in", "tuples",), # Positional arguments as Tupl

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

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

check-prime.cpp | Owner: demo | Views: 169 | Comments: 0 | Open/ Source 519 B

#include <iostream> using namespace std; int main() { int i, n; bool is_prime = true; cout << "Enter a positive

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

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

index.html | Owner: cody | Views: 39 | Comments: 0 | Open/ Source 1.29 KB

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

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

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

index.html | Owner: cody | Views: 86 | Comments: 0 | Open/ Source 582 B

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

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

VID-20220908-WA0004.mp4 | Owner: shubh | Views: 1319 | Comments: 13 | Open/ Source 0 B

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

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

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

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

Data-Types.php | Owner: djdj | Views: 67 | Comments: 0 | Open/ Source 969 B

<?php $name = "Dj"; //String $salary = 5000000; //Interger $experience = 1.5; //Float $bonus = "50.25k";//Decim

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

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

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

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

| Owner: djdj | Views: 263 | 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: 138 | Comments: 0 | Open/ Source 866 B

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

Add-Two-No.php | Owner: djdj | Views: 101 | 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: 97 | Comments: 0 | Open/ Source 577 B

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

3.txt | Owner: coderai | Views: 59 | 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

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

Image Cards.html | Owner: shubh | Views: 255 | Comments: 0 | Open/ Source 1.57 KB

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

LeetCode | Reverse Vowels of a String | Python | Owner: abh | Views: 39 | Comments: 0 | Open/ Source 371 B

class Solution: def reverseVowels(self, s: str) -> str: rvs = "" for c in s[::-1]: if c in "

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

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>PixSort S

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

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: 57 | Comments: 0 | Open/ Source 799 B

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

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

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

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

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

simple-string-manipulation.rb | Owner: demo | Views: 224 | Comments: 0 | Open/ Source 58 B

name = "John" greeting = "Hello, #{name}!" puts greeting

drink water | Owner: cody | Views: 105 | Comments: 0 | Open/ Source 1.05 KB

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

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

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

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

| Owner: itintern | Views: 28 | Comments: 0 | Open/ Source 395.77 KB

<html xmlns="http://www.w3.org/1999/xhtml"><head> <meta charset="utf-8"> <meta name="generator" content="pdf2htmlEX"> <meta h

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

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

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

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

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

frames = [ """

home.html | Owner: abh | Views: 125 | Comments: 0 | Open/ Source 629 B

<h1>HTMLify your dreams</h1> <center><p>Make your HTML files live</p> <form class="search-form" action="/search" method="GET" st

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

indexsamp.html | Owner: cody | Views: 106 | Comments: 0 | Open/ Source 1.03 KB

<html> <head> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div><h1>TEMPERATURE CONVERTER</h1></div>

Files.php | Owner: djdj | Views: 46 | Comments: 0 | Open/ Source 1.47 KB

<?php //for read the file readfile('yoursfile.txt'); //for only read the file echo readfile('yoursfil

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

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

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

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

Quiz App | Owner: cody | Views: 102 | 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: cody | Views: 121 | Comments: 0 | Open/ Source 1.06 KB

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

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

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

ticket.py | Owner: abh | Views: 160 | Comments: 4 | Open/ Source 1.31 KB

from requests import get, post def get_token(): r = get("https://helpdesk.agrauniv.online/Home/NewTicket") html = r

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

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