Log in Register Dashboard Temp Share Shortlinks Frames API

HTMLify your dreams

Filter Options:
index.html cody/frontendcharm/Mini-Projects/LOADERS/Fill Glass Loading Interaction/index.html
297 Views
0 Comments
<!DOCTYPE html>
<html>

<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Fill Glass Loading Interaction</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
ab67706f000000029778f9c7fc5d7923797fe4ad.jpeg cody/Aryan-Barodwal/spotify-clone/spotify-clone/img/ab67706f000000029778f9c7fc5d7923797fe4ad.jpeg
88 Views
0 Comments
Media file
npr.py abh/def/npr.py
568 Views
0 Comments
def npr(n, r):
return factorial(n) // factorial(n-r)

def npr(n, r):
result = 1
for i in range(r):
result *= n - i
return result
script.js cody/atherosai/ui/accordion-01/script.js
172 Views
0 Comments

//? This code is for animating details
//? of summary component and slightly modified
//? https://css-tricks.com/how-to-animate-the-
//? details-element-using-waapi/

class Accordion {
constructor(el) {
index.html cody/swapnilsparsh/30DaysOfJavaScript/203 - PortfoliO/index.html
347 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- <link rel="icon" href="%PUBLIC_URL%/favicon1.ico" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="Ashutosh's Portfolio"
IMG-20250108-WA0005.jpg djdj/djupraity/images/3.jpg
92 Views
0 Comments
Media file
style.css cody/atherosai/ui/toast-notification-01/style.css
114 Views
0 Comments

:root {
--notification-background: #313e2c;
--notification-primary: #aaec8a;
--background: #FAF9FF;
}

* {
LeetCode - Remove Nth Node From End of List - Ruby abh/lc/19.rb
231 Views
0 Comments
def remove_nth_from_end(head, n)
if not head or not head.next then
return nil
end

len = 0
th = head
while th do
style.css cody/frontendcharm/Mini-Projects/LOADERS/Flying Rocket Loader/style.css
172 Views
0 Comments
* {
box-sizing: border-box;
}

body {
background-color: #111;
display: grid;
place-items: center;
djdj/projects7/file.html
5 Views
0 Comments
File is locked
index.html cody/swapnilsparsh/30DaysOfJavaScript/184 - Pattern Generator/index.html
322 Views
0 Comments
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Pattern Generator</title>
<link rel="stylesheet" href="./style.css">

</head>
250919 0_0_0_1/system/25/09/19.txt
115 Views
0 Comments
4d6573736167652072656365697665642e
style.css cody/frontendcharm/Mini-Projects/FORM AND INPUTS/Engraved Dark Theme Toggle/style.css
140 Views
0 Comments
* {
border: 0;
box-sizing: border-box;
margin: 0;
padding: 0;
}

:root {
style.css cody/swapnilsparsh/30DaysOfJavaScript/128 - Bingo Card Generator/style.css
139 Views
0 Comments
.clear {
width: 100%;
clear: both;
}


.card {
float: left;
style.css cody/solygambas/html-css-javascript-projects/073-lyrics search app/style.css
182 Views
0 Comments
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');

:root {
--main-color: #3B9B76;
--secondary-color: #5AB193;
--text-color: rgba(255,255,255,0.87);
}

is_isogram.py abh/def/TESTS/is_isogram.py
411 Views
0 Comments
TESTCASES = [
{
"positional": ("Hello",),
"keyword": {},
"return": False,
"msg": ""
},
{
StringMethods.js shubh/javascript/StringMethods.js
200 Views
0 Comments
//String Methods
//str.toUpperCase()
let str="Shubh";
console.log(str.toUpperCase());

//str.toLowerCase()
let str="Shubh";
console.log(str.toLowerCase());
summer.mp4 cody/swapnilsparsh/30DaysOfJavaScript/138 - Meditation WebApp/assets/video/summer.mp4
137 Views
0 Comments
Media file
135.png cody/swapnilsparsh/30DaysOfJavaScript/30DaysOfJavaScript/assets/135.png
132 Views
0 Comments
Media file
script.js cody/bradtraversy/50projects50days/drawing-app/script.js
108 Views
0 Comments
const canvas = document.getElementById('canvas');
const increaseBtn = document.getElementById('increase');
const decreaseBtn = document.getElementById('decrease');
const sizeEL = document.getElementById('size');
const colorEl = document.getElementById('color');
const clearEl = document.getElementById('clear');

const ctx = canvas.getContext('2d');
package.json cody/Khushigupta8/Hotel-Management-Webpage/node_modules/content-type/package.json
124 Views
0 Comments
{
"name": "content-type",
"description": "Create and parse HTTP Content-Type header",
"version": "1.0.5",
"author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
"license": "MIT",
"keywords": [
"content-type",
style.css cody/bradtraversy/50projects50days/image-carousel/style.css
103 Views
0 Comments
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
box-sizing: border-box;
}

body {
font-family: 'Roboto', sans-serif;
index.html cody/vishal-dcode/GSAP Overlay Menu/index.html
69 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<script src="app.js" defer></script>
v6833fnu83.lrc amar/umeassets/v6833fnu83.lrc
9 Views
0 Comments
Media file
index.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/iconv-lite/encodings/index.js
140 Views
0 Comments
"use strict";

// Update this array if you add/rename/remove files in this directory.
// We support Browserify by skipping automatic module discovery and requiring modules directly.
var modules = [
require("./internal"),
require("./utf16"),
require("./utf7"),
style.css cody/frontendcharm/Mini-Projects/HOVERS EFFECTS/Image Card Stack Hover Effect/style.css
152 Views
0 Comments
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

README.md cody/swapnilsparsh/30DaysOfJavaScript/208 - PixSort Studio/Screenshots/README.md
213 Views
0 Comments
# PixSort Studio 📷
This folder contains sample images for future reference

Browse Page djdj/ITintern 2.O/home2/broswer2.html
3 Views
0 Comments
File is locked
README.md cody/Khushigupta8/Hotel-Management-Webpage/node_modules/has-proto/README.md
178 Views
0 Comments
# has-proto <sup>[![Version Badge][npm-version-svg]][package-url]</sup>

[![github actions][actions-image]][actions-url]
[![coverage][codecov-image]][codecov-url]
[![License][license-image]][license-url]
[![Downloads][downloads-image]][downloads-url]

[![npm badge][npm-badge-png]][package-url]
index.html cody/solygambas/html-css-javascript-projects/049-todo list/index.html
381 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Todo List</title>
</head>
truck.svg cody/frontendcharm/Mini-Projects/LOADERS/On The Way Loading MI/truck.svg
208 Views
0 Comments
Media file
LeetCode - Get Maximum in Generated Array - Go abh/lc/1656.go
218 Views
0 Comments
func getMaximumGenerated(n int) int {
if n == 0 {
return 0
}
arr := []int{0, 1}
for len(arr) < n + 1 {
l := len(arr)
i := l / 2
style.css cody/vishal-dcode/Grid Style/style.css
21 Views
0 Comments
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

:root {
--clr-primary-400: 271 30% 34%;
--clr-secondary-400: 329 25% 50%;
--clr-secondary-500: 7 100% 73%;
--clr-neutral-100: 0 0% 100%;
--clr-neutral-200: 210 46% 95%;
artizote.apk abh/artizote.apk
281 Views
0 Comments
Media file
wiki.html cody/ShubhamRoy123/Windows-10/wiki.html
263 Views
0 Comments
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<title>windows10</title>
mystyle.css cody/swapnilsparsh/30DaysOfJavaScript/92 - Casio/mystyle.css
140 Views
0 Comments
body{
background-color: #355586;
margin: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
style.css cody/frontendcharm/Mini-Projects/FORM AND INPUTS/Fancy Radio Button MI/style.css
158 Views
0 Comments
body {
display: grid;
place-items: center;
height: 100vh;
background: #151515;
color: white;
font-family: sans-serif;
font-size: 1.2rem;
6.jpg cody/swapnilsparsh/30DaysOfJavaScript/115 - Puzzle/images/img1/6.jpg
83 Views
0 Comments
Media file
6.txt coderai/6.txt
524 Views
0 Comments

**User:** Hi there! I'm looking for information on the best way to train my dog. Can you help me?

**AI Assistant:** Hi there! I'd be happy to help you with that. There are many different ways to train a dog, and the best method will depend on the individual dog and its owner. However, here are a few general tips that may be helpful:

* **Start training early.** Puppies are more receptive to training than older dogs, so it's best to start as early as possible.
* **Be consistent.** Dogs learn best when they
spotifydown.com - Feel My Love.mp3 cody/Aryan-Barodwal/spotify-clone/spotify-clone/songs/Diljit/spotifydown.com - Feel My Love.mp3
130 Views
0 Comments
Media file
Sholay_-_RRR_128_Kbps.mp3 djdj/songs/SholayRRR.mp3
97 Views
0 Comments
Media file
product-09.jpg cody/codewithsadee/glowing/assets/images/product-09.jpg
80 Views
0 Comments
Media file
cover.jpg cody/Aryan-Barodwal/spotify-clone/songs/cs/cover.jpg
104 Views
0 Comments
Media file
index.html cody/bradtraversy/50projects50days/drawing-app/index.html
294 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Drawing App</title>
</head>
HISTORY.md cody/Khushigupta8/Hotel-Management-Webpage/node_modules/mime-types/HISTORY.md
177 Views
0 Comments
2.1.35 / 2022-03-12
===================

* deps: mime-db@1.52.0
- Add extensions from IANA for more `image/*` types
- Add extension `.asc` to `application/pgp-keys`
- Add extensions to various XML types
- Add new upstream MIME types
1.jpg cody/swapnilsparsh/30DaysOfJavaScript/115 - Puzzle/images/img1/1.jpg
101 Views
0 Comments
Media file
HISTORY.md cody/Khushigupta8/Hotel-Management-Webpage/node_modules/content-disposition/HISTORY.md
180 Views
0 Comments
0.5.4 / 2021-12-10
==================

* deps: safe-buffer@5.2.1

0.5.3 / 2018-12-17
==================

Windows 11 cody/swapnilsparsh/30DaysOfJavaScript/196 - Windows 11/index.html
358 Views
0 Comments
<html lang="en">

<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Windows 11</title>
style.scss cody/frontendcharm/Mini-Projects/BUTTONS/Dark Mode Toggle Icon/style.scss
206 Views
0 Comments
Media file
style.css cody/bradtraversy/50projects50days/testimonial-box-switcher/style.css
93 Views
0 Comments
@import url('https://fonts.googleapis.com/css?family=Montserrat');

* {
box-sizing: border-box;
}

body {
background-color: #f4f4f4;
index.js cody/swapnilsparsh/30DaysOfJavaScript/79 - The Bet Game/index.js
229 Views
0 Comments
alert('Do you want to play the game?');

var randomNum1 = Math.floor(Math.random()*6)+1; // generate 1 to 6 random numbers
var randomImg= "img"+ randomNum1 + ".jpg"; // img1.jpg-img6.jpg
var randomImgSource= "image/" + randomImg; // image/imag1.jpg- image/ima6.jpg
var image1 = document.querySelectorAll("img")[0];
image1.setAttribute("src", randomImgSource);

README.md cody/swapnilsparsh/30DaysOfJavaScript/208 - Pig Dice Game/README.md
217 Views
0 Comments
# Pig Game (JavaScript)

Welcome to the Pig Game! This simple web-based game allows two players to take turns rolling dice and competing for victory. It's a fun and interactive way to challenge your luck and strategy as you aim to reach the target score.

![Screenshot 2023-10-08 221001](https://github.com/just-ctrlC-ctrlV/30DaysOfJavaScript-me/assets/109028862/79fe44eb-f37e-4664-b98b-8fa593065975)

## Table of Contents

itintern/quiz/quiz.html
63 Views
0 Comments
File is locked
index.html cody/frontendcharm/Mini-Projects/CUSTOM ANIMATIONS/Layered Text Effect On Hover/index.html
316 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Layered Text Effect On Hover</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
app.js cody/swapnilsparsh/30DaysOfJavaScript/203- N Queen Visualizer/app.js
228 Views
0 Comments
'use strict'
const numberbox = document.getElementById("numberbox");
const slider = document.getElementById("slider");
const progressBar = document.getElementById("progress-bar")
const playButton = document.getElementById('play-button');
const pauseButton = document.getElementById("pause-button");

const queen = '<i class="fas fa-chess-queen" style="color:#000"></i>';
Slide Nav Bar djdj/youtube/slidenavbar.html
307 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Sidebar</title>
<style>
* {
README.md cody/Khushigupta8/Hotel-Management-Webpage/node_modules/media-typer/README.md
176 Views
0 Comments
# media-typer

[![NPM Version][npm-image]][npm-url]
[![NPM Downloads][downloads-image]][downloads-url]
[![Node.js Version][node-version-image]][node-version-url]
[![Build Status][travis-image]][travis-url]
[![Test Coverage][coveralls-image]][coveralls-url]

index.html cody/frontendcharm/Mini-Projects/CUSTOM ANIMATIONS/Infinite Horizontal Scroll MI/index.html
266 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Infinite Horizontal Scroll Micro Interaction</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
package.json cody/Khushigupta8/Hotel-Management-Webpage/node_modules/media-typer/package.json
127 Views
0 Comments
{
"name": "media-typer",
"description": "Simple RFC 6838 media type parser and formatter",
"version": "0.3.0",
"author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
"license": "MIT",
"repository": "jshttp/media-typer",
"devDependencies": {
script.js cody/swapnilsparsh/30DaysOfJavaScript/22 - Zoom Effect/script.js
188 Views
0 Comments
const { body } = document;

let zoomActivated = false;

window.addEventListener('keydown', (e) => {
if(e.key === 'z') {
zoomActivated = !zoomActivated;
}
product-06.jpg cody/codewithsadee/glowing/assets/images/product-06.jpg
72 Views
0 Comments
Media file
script.js cody/atherosai/ui/sidebar-01/script.js
200 Views
0 Comments

const expand_btn = document.querySelector(".expand-btn");

let activeIndex;

expand_btn.addEventListener("click", () => {
document.body.classList.toggle("collapsed");
});
whole1.jpg cody/swapnilsparsh/30DaysOfJavaScript/115 - Puzzle/images/img1/whole1.jpg
128 Views
0 Comments
Media file
index.html cody/frontendcharm/Mini-Projects/FORM AND INPUTS/Pure CSS No SVG Dark Mode Toggle/index.html
277 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Pure CSS No SVG Dark Mode Toggle</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
style.css cody/frontendcharm/Mini-Projects/LOADERS/Folding Cube Loader/style.css
166 Views
0 Comments
body {
background-color: #1d1f20;
min-height: 100vh;
display: grid;
place-content: center;
}

.folding-cube {
about.html ahmads_codes/Marriage Hall Booking/about.html
309 Views
0 Comments
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css"
p2.jpg ahmads_codes/Marriage Hall Booking/p2.jpg
100 Views
0 Comments
Media file
style.css cody/swapnilsparsh/30DaysOfJavaScript/02 - Clock/style.css
143 Views
0 Comments
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
display: flex;
101.PNG cody/swapnilsparsh/30DaysOfJavaScript/30DaysOfJavaScript/assets/101.PNG
87 Views
0 Comments
Media file
image1.jpg cody/swapnilsparsh/30DaysOfJavaScript/200 - Image Utility/assets/img/nature/image1.jpg
108 Views
0 Comments
Media file
internal.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/iconv-lite/encodings/internal.js
143 Views
0 Comments
"use strict";
var Buffer = require("safer-buffer").Buffer;

// Export Node.js internal encodings.

module.exports = {
// Encodings
utf8: { type: "_internal", bomAware: true},
index.html cody/vishal-dcode/Matrix Rain Effect/index.html
61 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Matrix Colorful Rain Effect</title>
style.css cody/swapnilsparsh/30DaysOfJavaScript/158 - Maze Game/style.css
147 Views
0 Comments
html,
body {
width: 100vw;
height: 100vh;
position: fixed;
padding: 0;
margin: 0;
top: 0;
style.css cody/frontendcharm/Mini-Projects/CUSTOM ANIMATIONS/Colorful Fireworks on Canvas/style.css
166 Views
0 Comments
body {
margin: 0;
background: #000;
overflow: hidden;
}
205.png cody/swapnilsparsh/30DaysOfJavaScript/30DaysOfJavaScript/assets/205.png
146 Views
0 Comments
Media file
Theme-Of-Kalki.mp3 djdj/songs/Theme-Of-Kalki.mp3
95 Views
0 Comments
Media file
index.html cody/swapnilsparsh/30DaysOfJavaScript/164 - Bomb Throw Game/index.html
329 Views
0 Comments
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Bomb Throw</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel="stylesheet" href="./style.css">

index.html cody/swapnilsparsh/30DaysOfJavaScript/197 - Bubble Shooting Game/index.html
344 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Bubble Shooter Game</title>
<!-- Linking CSS & JS -->
<script type='text/javascript' src='script.js'></script>
<link rel="stylesheet" href="style.css">
ethereum.png cody/atherosai/ui/table-02/assets/ethereum.png
105 Views
0 Comments
Media file
summer.jpg cody/atherosai/ui/scrolling-01/images/summer.jpg
148 Views
0 Comments
Media file
cp949.json cody/Khushigupta8/Hotel-Management-Webpage/node_modules/iconv-lite/encodings/tables/cp949.json
134 Views
0 Comments
[
["0","\u0000",127],
["8141","갂갃갅갆갋",4,"갘갞갟갡갢갣갥",6,"갮갲갳갴"],
["8161","갵갶갷갺갻갽갾갿걁",9,"걌걎",5,"걕"],
["8181","걖걗걙걚걛걝",18,"걲걳걵걶걹걻",4,"겂겇겈겍겎겏겑겒겓겕",6,"겞겢",5,"겫겭겮겱",6,"겺겾겿곀곂곃곅곆곇곉곊곋곍",7,"곖곘",7,"곢곣곥곦곩곫곭곮곲곴곷",4,"곾곿괁괂괃괅괇",4,"괎괐괒괓"],
["8241","괔괕괖괗괙괚괛괝괞괟괡",7,"괪괫괮",5],
["8261","괶괷괹괺괻괽",6,"굆굈굊",5,"굑굒굓굕굖굗"],
["8281","굙",7,"굢굤",7,"굮굯굱굲굷굸굹굺굾궀궃",4,"궊궋궍궎궏궑",10,"궞",5,"궥",17,"궸",7,"귂귃귅귆귇귉",6,"귒귔",7,"귝귞귟귡귢귣귥",18],
crs.jpg ahmads_codes/E-Commerce Hub/crs.jpg
101 Views
0 Comments
Media file
bitwise.c abh/learning/c/BPPL/Phase-2/bitwise/bitwise.c
89 Views
0 Comments
#include <ncurses.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>

enum type {
INT,
FLOAT,
LeetCode - Add Two Integers - Scala abh/lc/2235.scala
485 Views
1 Comments
object Solution {
def sum(num1: Int, num2: Int): Int = {
return num1 + num2;
}
}
v6833fnu83.lrc amar/umeassets/v6833fnu83.lrc
9 Views
0 Comments
Media file
triangle_number.py abh/def/triangle_number.py
383 Views
0 Comments
def triangle_number(n):
t = 0
for i in range(1, n+1):
t += i
return t

def triangle_number(n):
return sum(range(1, n+1))
script.js cody/solygambas/html-css-javascript-projects/014-animated navigation/script.js
255 Views
0 Comments
const toggle = document.getElementById("toggle");
const nav = document.getElementById("nav");

toggle.addEventListener("click", () => nav.classList.toggle("active"));

todo.css khushi/To-Do List/todo.css
188 Views
0 Comments
*{
margin:0 ;
padding:0 ;
font-family: 'popins','sans-sarif';
box-sizing: border-box;
}
body{
display: flex;
animated countdown cody/solygambas/html-css-javascript-projects/034-animated countdown/index.html
368 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Animated Countdown</title>
</head>
font-awesome.min.css cody/swapnilsparsh/30DaysOfJavaScript/77 - Search Github Profile/css/font-awesome.min.css
148 Views
0 Comments
/*!
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4
script.js cody/solygambas/html-css-javascript-projects/056-image comparison slider/script.js
252 Views
0 Comments
const container = document.querySelector(".container");
const slider = document.querySelector(".slider");
const before = document.querySelector(".img-container-before");
const after = document.querySelector(".img-container-after");

const dragSlider = (e) => {
let x = e.type.includes("mouse") ? e.layerX : e.touches[0].clientX;
let size = container.offsetWidth;
116.png cody/swapnilsparsh/30DaysOfJavaScript/30DaysOfJavaScript/assets/116.png
125 Views
0 Comments
Media file
key24.mp3 cody/swapnilsparsh/30DaysOfJavaScript/34 - Virtual Piano/sounds/key24.mp3
129 Views
0 Comments
Media file
Style djdj/style.html
1 Views
0 Comments
File is locked
images2.jpg cody/swapnilsparsh/30DaysOfJavaScript/37 - RPS Game/assets/images2.jpg
152 Views
0 Comments
Media file
Icon-App-40x40@2x.png cody/PrakharDoneria/Tic-Tac-Toe-Flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
72 Views
0 Comments
Media file
Spotify Clone cody/Aryan-Barodwal/spotify-clone/spotify-clone/index.html
0 Views
0 Comments
File is locked
IDEWorkspaceChecks.plist cody/PrakharDoneria/Tic-Tac-Toe-Flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
241 Views
0 Comments
Media file
index.html cody/solygambas/html-css-javascript-projects/076-new year countdown/index.html
384 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>New Year Countdown</title>
</head>
app.js cody/vishal-dcode/Realistic Toggle Button/app.js
26 Views
0 Comments

8.jpg cody/swapnilsparsh/30DaysOfJavaScript/115 - Puzzle/images/img3/8.jpg
106 Views
0 Comments
Media file
style.css cody/swapnilsparsh/30DaysOfJavaScript/78 - Dictionary App/style.css
145 Views
0 Comments
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body {
display: flex;
index.html cody/vishal-dcode/Verify Account UI/index.html
56 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
G.wav cody/swapnilsparsh/30DaysOfJavaScript/92 - Casio/Music_Note/G.wav
81 Views
0 Comments
Media file
logout.php djdj/php//Programs/System/logout.php
173 Views
0 Comments
<?php
session_start();
if(!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] != true){
header("location:login.php");
}
else{
session_unset();
session_destroy();
key12.mp3 cody/swapnilsparsh/30DaysOfJavaScript/34 - Virtual Piano/sounds/key12.mp3
119 Views
0 Comments
Media file
68.PNG cody/swapnilsparsh/30DaysOfJavaScript/30DaysOfJavaScript/assets/68.PNG
91 Views
0 Comments
Media file
to-do/script.js deepika/to-do/script.js
256 Views
0 Comments
const inputBox=document.getElementById("input-box");
const listContainer=document.getElementById("list-container");
function addTask()
{
if(inputBox.value==='')
{
alert("you must write something!");
}
karma.conf.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/debug/karma.conf.js
151 Views
0 Comments
// Karma configuration
// Generated on Fri Dec 16 2016 13:09:51 GMT+0000 (UTC)

module.exports = function(config) {
config.set({

// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '',
indev.html dakshbadal1379/indev.html
445 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
color.css khushi/Calculator/color.css
155 Views
0 Comments
*{
font-family: Arial, Helvetica, sans-serif;
background-color:#fff;
margin: 0;
padding: 0;
width: 80%;
align-items: center;
box-sizing: border-box;
index.html cody/bradtraversy/50projects50days/split-landing-page/index.html
312 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Split Landing Page
</title>
space_simulator.png cody/atherosai/ui/tabs-04/assets/space_simulator.png
116 Views
0 Comments
Media file
style.css cody/vishal-dcode/Event KeyCodes/style.css
32 Views
0 Comments
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
script.js cody/bradtraversy/50projects50days/custom-range-slider/script.js
109 Views
0 Comments
const range = document.getElementById('range')

range.addEventListener('input', (e) => {
const value = +e.target.value
const label = e.target.nextElementSibling

const range_width = getComputedStyle(e.target).getPropertyValue('width')
const label_width = getComputedStyle(label).getPropertyValue('width')
saturn.png djdj/youtube/images/saturn.png
112 Views
0 Comments
Media file
hangman.js cody/swapnilsparsh/30DaysOfJavaScript/36 - Hangman/scripts/hangman.js
201 Views
0 Comments
class Hangman {
constructor(word, remainingGuesses){
this.word = word.toLowerCase().split('');
this.remainingGuesses = remainingGuesses;
this.guessedLetters = [];
this.status = 'playing';
}

yellow.mp3 cody/swapnilsparsh/30DaysOfJavaScript/58 - Simon Game/sounds/yellow.mp3
119 Views
0 Comments
Media file
IMG_20240703_204514.png cody/ShubhamRoy123/Windows-10/IMG_20240703_204514.png
75 Views
0 Comments
Media file
LICENSE cody/Khushigupta8/Hotel-Management-Webpage/node_modules/iconv-lite/LICENSE
315 Views
0 Comments
Media file
script.js cody/bradtraversy/50projects50days/form-input-wave/script.js
97 Views
0 Comments
const labels = document.querySelectorAll('.form-control label')

labels.forEach(label => {
label.innerHTML = label.innerText
.split('')
.map((letter, idx) => `<span style="transition-delay:${idx * 50}ms">${letter}</span>`)
.join('')
})
project euler #47.py kartik/project euler.py
407 Views
0 Comments
def solve():


target = 4
limit = 150000
n_prime_divisors = [0] * limit

run_length = 0
script.js cody/swapnilsparsh/30DaysOfJavaScript/30DaysOfJavaScript/script.js
198 Views
0 Comments
// Preloader
var preloader = document.getElementById('loading');

function loading() {
setTimeout(myfunction, 2000);
}
function myfunction() {
preloader.style.display = 'none';
15.jpg ahmads_codes/E-Commerce Hub/15.jpg
120 Views
0 Comments
Media file
style.css cody/frontendcharm/Mini-Projects/LOADERS/Basic Gradient Spinner/style.css
157 Views
0 Comments
* {
box-sizing: border-box;
}

body {
background-color: #161622;
display: grid;
place-items: center;
index.html cody/bradtraversy/50projects50days/incrementing-counter/index.html
297 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog==" crossorigin="anonymous" />
<link rel="stylesheet" href="style.css" />
<title>Increment Counter</title>
hello.html dakshbadal1379/hello.html
65 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Calculator</title>
<style>
* {