HTMLify your dreams

Filter Options:
Horizontal Scroll Snap | Owner: cody | Views: 184 | Comments: 0 | Open/ Source 761 B

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

While-loop.php | Owner: djdj | Views: 114 | Comments: 0 | Open/ Source 99 B

<?php //while loop $i = 1; while($i<=10){ echo $i. "\n"; $i++; } ?>

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

vibration.html | Owner: demo | Views: 179 | Comments: 0 | Open/ Source 683 B

<!DOCTYPE html> <html> <head> <title>Vibration Button</title> </head> <body> <button id="vibrateButton">Vibrate<

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

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

calculate-sum-of-two-numbers.java | Owner: demo | Views: 172 | Comments: 0 | Open/ Source 207 B

public class SumCalculator { public static void main(String[] args) { int num1 = 5; int num2 = 10;

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

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

index.html | Owner: cody | Views: 123 | Comments: 0 | Open/ Source 829 B

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

conferm-delete.html | Owner: abh | Views: 143 | 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

about.html | Owner: demo | Views: 217 | Comments: 0 | Open/ Source 1.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: 61 | Comments: 0 | Open/ Source 1019 B

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

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

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

Character counter..html | Owner: sachinthakur | Views: 168 | 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.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

upload certificate.html | Owner: sachinthakur | Views: 144 | Comments: 0 | Open/ Source 4.15 KB

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

LeetCode - Search a 2D Matrix - Python | Owner: abh | Views: 286 | Comments: 0 | Open/ Source 200 B

class Solution: def searchMatrix(self, matrix: List[List[int]], target: int) -> bool: for row in matrix:

index.html | Owner: cody | Views: 65 | Comments: 0 | Open/ Source 413 B

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

stylesheet.html | Owner: abh | Views: 125 | Comments: 0 | Open/ Source 11.0 KB

<meta name="viewport" content="width=device-width, initial-scale=1"> <style> /* registration page style*/ .registration-form

index.html | Owner: cody | Views: 120 | Comments: 0 | Open/ Source 2.29 KB

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

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

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

Ecommerce Assignment-1 | Owner: djdj | Views: 297 | Comments: 0 | Open/ Source 16.78 KB

<head> <meta name="viewport" content="width=device-width,initial-scale=1.0"> </head> <h3>Q1. What is Ecommerce. Explain types

index.html | Owner: cody | Views: 119 | Comments: 0 | Open/ Source 519 B

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

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

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

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

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

ticket.py | Owner: abh | Views: 163 | 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

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

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

average.py | Owner: abh | Views: 163 | Comments: 0 | Open/ Source 315 B

def average(*nums): s = 0 c = 0 for n in nums: s += n c += 1 return s / c def average(*nums):

To Do List | Owner: deepika | Views: 322 | Comments: 0 | Open/ Source 842 B

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

Add-Two-No.php | Owner: djdj | Views: 114 | 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: 104 | 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: 112 | 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">

CALCUEOT.html | Owner: dakshbadal1379 | Views: 177 | 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

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

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

index.html | Owner: cody | Views: 45 | Comments: 0 | Open/ Source 4.23 KB

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

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

css4.html | Owner: demo | Views: 179 | Comments: 0 | Open/ Source 934 B

<!DOCTYPE html> <html> <head> <title>CSS Loading Spinner Animation</title> <style> /* Custom CSS for the lo

Demo Showcase | Owner: demo | Views: 430 | Comments: 0 | Open/ Source 7.52 KB

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

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

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

index.html | Owner: cody | Views: 139 | Comments: 0 | Open/ Source 955 B

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

First | Owner: shivam | Views: 2 | Comments: 0 | Open/ Source 16 B

<h1> Hello </h1>

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

index.html | Owner: cody | Views: 52 | Comments: 0 | Open/ Source 419 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: 61 | Comments: 0 | Open/ Source 754 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: 128 | Comments: 0 | Open/ Source 4.64 KB

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

edit.html | Owner: abh | Views: 132 | Comments: 0 | Open/ Source 1001 B

<!-- edit.html --> <form action="/action/edit" method="POST"> <input type="text" name="path" value="{{ path }}" /> Mode: {% if

Condition | Owner: djdj | Views: 227 | Comments: 0 | Open/ Source 865 B

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

index.html | Owner: cody | Views: 64 | 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: 124 | Comments: 0 | Open/ Source 1.3 KB

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

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

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

| 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

Indic.html | Owner: dakshbadal1379 | Views: 26 | Comments: 0 | Open/ Source 874 B

triangle_number.py | Owner: abh | Views: 114 | Comments: 0 | Open/ Source 245 B

def triangle_number(n): t = 0 for i in range(1, n+1): t += i return t def triangle_number(n): return su

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

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

index.html | Owner: cody | Views: 118 | Comments: 0 | Open/ Source 520 B

<!-- Based on Fun ways to animate CSS gradients by Kevin Powell (2019) see: https://www.youtube.com/watch?v=f3mwKLXpOLk --> <!D

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

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

index.html | Owner: cody | Views: 50 | Comments: 0 | Open/ Source 5.44 KB

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

Q1837_Sum_of_Digits_in_Base_K.py | Owner: djdj | Views: 152 | Comments: 0 | Open/ Source 169 B

class Solution(object): def sumBase(self, n, k): s=0 while n > 0: r = n%k s = s+r

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

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

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

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

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

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

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

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

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

13.txt | Owner: coderai | Views: 72 | Comments: 0 | Open/ Source 1.38 KB

* **Make it unique.** Your username should be something that is not already taken by another user. If it is, you will be prompt

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

Q504_Base_7.py | Owner: djdj | Views: 154 | Comments: 0 | Open/ Source 469 B

def convertToBase7(self, num): if num == 0: return "0" s = [] minus = False if num <

index.html | Owner: cody | Views: 56 | Comments: 0 | Open/ Source 535 B

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

e.html | Owner: tanishkak | Views: 196 | Comments: 0 | Open/ Source 69 B

<iframe src='https://htmlify.artizote.com/api/embed?id=165'></iframe>

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

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

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

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

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

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

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

| Owner: djdj | Views: 10 | Comments: 0 | Open/ Source 1.57 KB

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

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

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

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

<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>Flipbook</title> <link rel= "stylesheet" href

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

calc.html | Owner: kartik | Views: 218 | Comments: 0 | Open/ Source 3.08 KB

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

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

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

hello-world.cs | Owner: demo | Views: 191 | Comments: 0 | Open/ Source 113 B

using System; class Program { static void Main() { Console.WriteLine("Hello, World!"); } }

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

requirements.txt | Owner: abh | Views: 109 | Comments: 0 | Open/ Source 54 B

flask flask_sqlalchemy flask_migrate requests pygments

jojo1.png | Owner: abh | Views: 102 | Comments: 0 | Open/ Source 0 B

index.html | Owner: cody | Views: 116 | Comments: 0 | Open/ Source 612 B

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

Multi-Dieminsion-Array.php | Owner: djdj | Views: 44 | Comments: 0 | Open/ Source 1.07 KB

<?php //Multi Dieminsion Array $md = array( array(2,5,7,8), array(1,2,3,1), array(5,6,7,2));

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

index.html | Owner: cody | Views: 66 | 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: 58 | Comments: 0 | Open/ Source 697 B

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

Foreach-Loop.php | Owner: djdj | Views: 90 | Comments: 0 | Open/ Source 465 B

<?php // foreach loop in php $arr = array('Apple','Banana','Grapes','Mango'); //this is a simply a for loop that us

Foreach-Loop.php | Owner: djdj | Views: 128 | Comments: 0 | Open/ Source 465 B

<?php // foreach loop in php $arr = array('Apple','Banana','Grapes','Mango'); //this is a simply a for loop that us

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

<!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 9.27 KB

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

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

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

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

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

is_isogram.py | Owner: abh | Views: 104 | Comments: 0 | Open/ Source 814 B

TESTCASES = [ { "positional": ("Hello",), "keyword": {}, "return": False, "msg": "" },

index.html | Owner: cody | Views: 91 | 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: 62 | Comments: 0 | Open/ Source 2.04 KB

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

Q69_Sqrt(x).c | Owner: djdj | Views: 133 | Comments: 0 | Open/ Source 45 B

is_armstrong.py | Owner: abh | Views: 167 | Comments: 0 | Open/ Source 314 B

def is_armstrong(n: int): n = str(n) p = len(n) s = 0 for d in n: s += int(d)**p return int(n) == s

Dbms Practicle File Q2 | Owner: djdj | Views: 226 | Comments: 0 | Open/ Source 2.12 KB

Q.2 Write a SQl block to create a department table and add the constraints department name, department number and department hea

index.html | Owner: cody | Views: 42 | Comments: 0 | Open/ Source 769 B

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

popup.html | Owner: cody | Views: 141 | Comments: 0 | Open/ Source 382 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: 103 | 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

| Owner: djdj | Views: 57 | Comments: 0 | Open/ Source 227 B

<meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> a{ font-size: 20px; } </style> <a href="htt

qcfc.py | Owner: abh | Views: 188 | Comments: 0 | Open/ Source 2.36 KB

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

Rock Paper Scissors Game in Kotlin | Owner: demo | Views: 205 | Comments: 0 | Open/ Source 1.04 KB

import java.util.Random fun main() { val options = arrayOf("Rock", "Paper", "Scissors") while (true) { p

Scope-Local-Global-Variable.php | Owner: djdj | Views: 135 | Comments: 0 | Open/ Source 576 B

<?php $a = 50; // Global Variable function paste(){ $a = 10; // Local Variable echo $a. "\n"; g

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

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

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

kkkk | Owner: rahul_verma_coder | Views: 80 | Comments: 0 | Open/ Source 29.26 KB

Level 1 <!DOCTYPE html> <html> <head> <title>level 1</title> </head> <body><div style="color : red;">

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

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

hehe.html | Owner: amar | Views: 206 | Comments: 1 | Open/ Source 188 B

<body style='color:#aa1212; font-family:roman;' background='0.png'> <center><h2> hehe duniya:) </h2></> <p>

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

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

index.html | Owner: cody | Views: 134 | Comments: 0 | Open/ Source 12.99 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Toolbar Menu</title> <meta nam

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

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

Todolist.html | Owner: tanishkak | Views: 217 | Comments: 0 | Open/ Source 771 B

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

image.html | Owner: priyanka | Views: 179 | 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" />

calculate-area-of-rectangle.swift | Owner: demo | Views: 196 | Comments: 0 | Open/ Source 101 B

let length = 5.0 let width = 3.0 let area = length * width print("Area of the rectangle: \(area)")

is_happy.py | Owner: abh | Views: 139 | Comments: 0 | Open/ Source 454 B

def is_happy(n: int): n = str(n) while len(n) != 1: s = 0 for d in n: s += int(d)*int(d)

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

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

| Owner: amar | Views: 186 | Comments: 0 | Open/ Source 0 B

index.html | Owner: cody | Views: 115 | Comments: 0 | Open/ Source 376 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: 62 | Comments: 0 | Open/ Source 2.27 KB

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

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

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Toolbar Menu</title> <meta nam

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

<!-- Based on Product Landing Page by Brad Traversy (2019) see: https://www.youtube.com/watch?v=61R5kn_kYwY --> <!DOCTYPE html>

Privacy Policy | Owner: djdj | Views: 21 | Comments: 0 | Open/ Source 2.51 KB

<meta name="viewport" content= "width=device-width, initial-scale=1.0"> <style> p{ font-size:15px; } </style> <h2>Privacy

amazonclone.html | Owner: cody | Views: 61 | Comments: 0 | Open/ Source 8.0 KB

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

Operator.php | Owner: djdj | Views: 102 | 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