top of page


<!DOCTYPE html>

<html>

<head>

<style>

body {

background-color: black;

font-size:50px;

}


h1 {

color: white;

text-align: center;

}


div{

width:200px;

height:10px;

background:green;

}


marquee{

width:350px;

height:60px;

background:none;

margin-left:210px;

margin-top:-150px;

}




</style>

</head>

<body>


<h1>Deepak</h1>

<marquee width="60%" behavior="scroll" direction="right" scrollamount="50" height="100px">

<div></div>

</marquee>


</body>

</html>





5 views0 comments

Updated: Aug 17, 2023



<!DOCTYPE html>

<html>

<head>

<style>

body {

background-color: lightblue;

}


h1 {

color: white;

text-align: center;

}


.main{

background:red;

width:200px;

height:200px;

border-radius:195px;

border:10px solid #66ffff;

border-top:10px solid #004d4d;

background:none;

animation: rotate 0.5s infinite;

}


@keyframes rotate{

100%{rotate:360deg;

}

}


</style>

</head>

<body>


<h1>My Loader</h1><br><br>

<center><div class="main"></div></center>


</body>

</html>





8 views0 comments


#include<stdio.h>

void main()

{

int size;

printf("\nEnter the size of array : ");

scanf("%d",&size);

int a[size];

int i=0,e,count=0;

for(i=0;i<size;i++)

{

printf("\nEnter element : ");

scanf("%d",&a[i]);

}

printf("\nArray : ");

for(i=0;i<size;i++)

{

printf("\t%d",a[i]);

}

printf("\nEnter element to search : ");

scanf("%d",&e);

for(i=0;i<size;i++)

{

if(e==a[i])

{

count+=1;

printf("\nElement found successfully🙂🙂🙂!");

}

}

if(count==0)

{

printf("\nSorry! element is not found😅😅😅!");

}

}

0 views0 comments
bottom of page