Skip to content
Open

Dk #1

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
1d993f8
Update index.html
dk5847001-stack Dec 15, 2025
b15604e
CSS Animations
dk5847001-stack Dec 15, 2025
9f1d0d4
Object Fit and Position
dk5847001-stack Dec 15, 2025
998d773
CSS Filter
dk5847001-stack Dec 15, 2025
8329d47
_____ULTRA EDIT WEBSITE DESIGN______
dk5847001-stack Dec 15, 2025
7e0f0fe
Ball Bounce Exercise-8
dk5847001-stack Dec 16, 2025
f314851
project
dk5847001-stack Dec 17, 2025
036c3bc
java script object variable
dk5847001-stack Dec 18, 2025
53fbfce
ne=NETFLIX CLONE Added all assets and files
dk5847001-stack Dec 21, 2025
ca5759c
STRING
dk5847001-stack Dec 22, 2025
f4b8f1b
FAULTY CALCULATOR
dk5847001-stack Dec 22, 2025
597dce9
array
dk5847001-stack Dec 23, 2025
88d8408
loop
dk5847001-stack Dec 23, 2025
019125b
maping in array using for loop
dk5847001-stack Dec 23, 2025
4da11a3
exercise 8
dk5847001-stack Dec 23, 2025
dd2ca8b
FACTORIAL
dk5847001-stack Dec 24, 2025
d101e8b
DOM
dk5847001-stack Dec 24, 2025
d28b824
BOM
dk5847001-stack Dec 24, 2025
1caad3e
JAVA SCRIPT SELECTER
dk5847001-stack Dec 24, 2025
860e998
FACTORIAL
dk5847001-stack Dec 24, 2025
aef7ef1
.
dk5847001-stack Dec 24, 2025
ab23e8b
.
dk5847001-stack Dec 24, 2025
b802647
SELECTER - EXERSISE
dk5847001-stack Dec 24, 2025
86fca1b
java script query selecter
dk5847001-stack Dec 26, 2025
80f7fb4
Random Color Generate
dk5847001-stack Dec 26, 2025
d79abc2
promise
dk5847001-stack Jan 1, 2026
2f12054
ASYNC FUNCTION
dk5847001-stack Jan 1, 2026
5d501e3
EXERSIZE
dk5847001-stack Jan 2, 2026
a7a70de
Error Handling
dk5847001-stack Jan 3, 2026
b51afa2
OBJECT ORIENTED PROGRAMING
dk5847001-stack Jan 3, 2026
eceb981
Exersise 14 completed
dk5847001-stack Jan 3, 2026
c009c05
ADVANCE JAVA SCRIPT
dk5847001-stack Jan 3, 2026
e540cba
JAVA SCRIPT INTERVIEW QUESTION
dk5847001-stack Jan 3, 2026
3f2df42
ADVANCE JAVA SCRIPT INTERVIEW QUESTION
dk5847001-stack Jan 3, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"livePreview.hostIP": "10.169.144.49",
"livePreview.debugOnExternalPreview": false
"livePreview.debugOnExternalPreview": false,
"liveServer.settings.port": 5501
}
11 changes: 11 additions & 0 deletions New folder/New folder/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<iframe style="border: 1px solid rgba(0, 0, 0, 0.1);" width="800" height="450" src="https://embed.figma.com/proto/LPUEILheGmww9QcNM26s8c/Dilkhush.com?node-id=1-1858&scaling=scale-down&content-scaling=fixed&page-id=0%3A1&embed-host=share" allowfullscreen></iframe>
</body>
</html>
File renamed without changes.
123 changes: 66 additions & 57 deletions video28/index.html
Original file line number Diff line number Diff line change
@@ -1,70 +1,79 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Position</title>
<style>
*{
margin: 0;
padding: 0;
}
.box1{
left: 192px;
position: absolute;
/* position: sticky; */
top: 0px;
height: 10px;
width: 100%;
margin: 110;
padding: 110;
top: 0;
z-index: 1;
background-color: aqua;
}
.box2{
background-color: antiquewhite;
/* position: relative; */
left: 64px;
top: -74px;
height: 100px;
}
.box3{
background-color: blueviolet;
position: fixed;
top: 277px;
left: 138px;
}
.box4{
background-color: brown;
}
.box{
height: 133px;
width: 80vw;
margin: 5px auto;
padding: 60px;
border: 3px solid black;
* {
margin: 0;
padding: 0;
}

.box1 {
left: 192px;
position: absolute;
/* position: sticky; */
top: 0px;
height: 10px;
width: 100%;
margin: 110;
padding: 110;
top: 0;
z-index: 1;
background-color: aqua;
}

.box2 {
background-color: antiquewhite;
/* position: relative; */
left: 64px;
top: 40px;
height: 100px;
}

.box3 {
background-color: blueviolet;
position: fixed;
top: 277px;
left: 138px;
}

.box4 {
background-color: brown;
}

}
.parent{
/* scroll-behavior: auto; */
padding: 43px;
margin: 34px;
border: 3px solid black;
/* transform, filter or perspective: can also make an element appear a positioned; */
position: relative;
/* transform: translate(0); */
/* filter: invert(0); */
/* perspective: 0em; */
}
</style>
.box {
height: 133px;
width: 80vw;
margin: 5px auto;
padding: 60px;
border: 3px solid black;

}

.parent {
/* scroll-behavior: auto; */
padding: 43px;
margin: 34px;
border: 3px solid black;
/* transform, filter or perspective: can also make an element appear a positioned; */
position: relative;
/* transform: translate(0); */
/* filter: invert(0); */
/* perspective: 0em; */
}
</style>
</head>

<body>
<div class="parent">
<div class="box box1"></div>
<div class="box box2"></div>
<div class="box box3"></div>
<div class="box box4"></div>
</div>
<div class="box box1"></div>
<div class="box box2"></div>
<div class="box box3"></div>
<div class="box box4"></div>
</div>
</body>

</html>
34 changes: 22 additions & 12 deletions video35/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box{
border: 2px solid black
;
.box {
border: 2px solid black;
}

.box:first-child {
background-color: red;
}
Expand All @@ -19,28 +19,37 @@
font-size: 25px;
}

p, a, .box, [data-color="primary"] {
margin-top: 45px;
p,
a,
.box,
[data-color="primary"] {
margin-top: 45px;
}
.box:nth-child(even){

.box:nth-child(even) {
background-color: blue;
}
.boxes::before{

.boxes::before {
content: "Dilkhush is good";
}
.boxes::after{

.boxes::after {
content: "Sigma courses is very good";
color: red;
}
::selection{

::selection {
color: red;
background-color: black;
}
.box::first-letter{

.box::first-letter {
color: brown;
font-size: 34px;
}
input::placeholder{

input::placeholder {
color: blue;
}
</style>
Expand All @@ -66,7 +75,8 @@
distinctio quis voluptas omnis quo velit, adipisci odit sunt accusantium deserunt debitis eaque ipsum
aliquam illo doloremque id laudantium illum fugiat doloribus ratione dolore. Accusantium dolor corrupti sint
eligendi voluptatibus at, non, quibusdam repellendus similique, dolorem laborum distinctio totam assumenda
atque labore. Pariatur, quos dolore!</div>
atque labore. Pariatur, quos dolore!
</div>
<div class="box">Hey I am a box</div>
<input type="text" placeholder="Type your name here">
</div>
Expand Down
1 change: 1 addition & 0 deletions video41/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Navbar Design</title>
<style>

header {
position: sticky;
top: 0;
Expand Down
5 changes: 2 additions & 3 deletions video46/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
height: 80vh;
width: 30vw;
}

.box {
box-shadow: 0px 1px 5px;
align-content: center;
Expand All @@ -29,7 +28,7 @@
animation-delay: 3s;
animation-direction: alternate-reverse;
/* animation-play-state: paused; */
animation: harry2 4s ease-in-out 2s infinite alternate-reverse forwards;
/* animation: harry2 4s ease-in-out 2s infinite alternate-reverse forwards; */
}

@keyframes harryKaAnimation {
Expand All @@ -38,7 +37,7 @@
}

to {
transform: translateX(20vw) translateY(20vh) scale(3);
transform: translateX(20vw) translateY(0vh) scale(3);
background-color: tomato;
}
}
Expand Down
Loading