Educationlabtech
Study is what makes a person successful, so study hard.
30/06/2022
Simple html code for table and a form by K S K "NIRAMALA"
WELCOME TO ARCC
Page Title
ima
ArccWelcomeSlip
Subject
Minimum
Maximum
Obtain
WELCOME TO ARCC
THANK YOU FOR LOOKING
Form
url('https://fonts.googleapis.com/css2?family=Itim&display=swap');
url('wght@300&display=swap');" rel="ugc" target="_blank">https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
url('wght@300&display=swap');" rel="ugc" target="_blank">https://fonts.googleapis.com/css2?family=Newsreader:wght@300&display=swap');
url('https://fonts.googleapis.com/css2?family=Girassol&display=swap');
form {
font-family:'Itim', cursive;
WELCOME TO ARCC
}
button{
border:2px solid black;
padding:17px 15px;
border-radius:15px 14px;
width:100%;
cursor:pointer;
font-family:'Roboto', sans-serif;
font-size:15px;
background-color:rgb(225,195,225);
box-shadow: 5px 5px grey;
}
p {
padding:1px 3px;
border:4px solid black;
border-radius:15px;
font-family: 'Roboto', sans-serif;
font-size:17px;
}
textarea {
font-family: 'Itim', cursive;
border: 1px solid;
padding: 10px;
box-shadow: 5px 10px red;
}
select{
font-family:'Roboto', sans-serif;
}
a {
text-decoration:none;
border:3px solid black;
padding: 10px 15px;
border-radius:15px;
background-color: yellow;
}
h2 {
font-family: 'Girassol', cursive;
border:2px solid black;
padding:5px 10px;
border-radius:30px;
background-color:white;
box-shadow:5px 4px grey;
}
input[type=text], select {
width: 100%;
padding: 12px 20px;
margin: 4px 0;
display: inline-block;
border: 1px solid ;
border-radius: 4px;
box-sizing: border-box;
}
WELCOME TO ARCC
input[type=password], select {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid ;
border-radius: 4px;
}
input[type=email ], select{
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid ;
border-radius: 4px;
box-sizing: border-box;
}
input[type=number], select {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid ;
border-radius: 4px;
box-sizing: border-box;
}
input[type=date], select {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid ;
border-radius: 4px;
box-sizing: border-box;
}
Admission Form
First name :
Father name :
last name :
DOB :
Mo no :
Email-id :
Password :
Select your city :
Mumbai
Surat
Odisha
WELCOME TO ARCC
Select your gender :
Male
Female
Address :
Enter your address here.
WELCOME TO ARCC
Select optional subjects :--
Hindi
Marathi
SP
IT
SUBMIT
Reset
Developed by K S K NIRAMALA.
Click here
To follow me.
WELCOME TO ARCC
A simple c programme for MarkSheet By K S K "NIRAMALA"
int main()
{
int hindi,math,english,science,social;
int total;
int perc;
printf("enter the mark\n");
scanf("%d",&hindi);
printf("enter the mark\n");
scanf("%d",&math);
printf("enter the mark\n");
scanf("%d",&english);
printf("enter the mark\n");
scanf("%d",&science);
printf("enter the mark\n");
scanf("%d",&social);
printf(" ANKPTRA\n\n");
printf("subject maxim mini obtai\n\n\n");
printf("Hindi 100 33 %d \n",hindi);
printf("Math 100 33 %d \n",math);
printf("English 100 33 %d \n",english);
printf("Science 100 33 %d \n",science);
printf("Social science 100 33 %d \n\n\n",social);
total=hindi+math+english+science+social;
perc=(total*100)/500;
printf("percent=%d 500 Total= %d\n",perc,total );
if(perc>=60)
{
printf("Grafe A");
}
else if(perc>=45 && perc=33 && perc>=44)
{
printf("Grade C");
}
else
{
printf("Grade F");
}
}
Simple html code for text animation by K S K " NIRAMALA"
Page Title
*{
padding:0px;
margin:0px;
background-color:black;
}
body {
height:100vh;
display:flex;
box-sizing:border-box;
justify-content:center;
align-items:center;
}
h1{
width:0ch;
overflow:hidden;
white-space:nowrap;
font-family:Sans-serif;
font-style:armenian;
letter-spacing:0px;
font-size:50px;
animation:html 5s infinite alternate steps(5);
border-right:3px solid black;
color:white;
}
html{
0%{
width:0ch;
}
10%{
width:4ch;
}
20%{
width:7.5ch;
}
I❤️LOVE YOU NIRMALA
Html code for scroll a word or sentence by K S K
"NIRAMALA"
scrolling text... right to left!
scrolling text... left to right!
08/05/2022
Simple html page to perform calculator by K S K "NIRAMALA"
//function that display value
function dis(val)
{
document.getElementById("result").value+=val
}
//function that evaluates the digit and return result
function solve()
{
let x = document.getElementById("result").value
let y = eval(x)
document.getElementById("result").value = y
}
//function that clear the display
function clr()
{
document.getElementById("result").value = ""
}
.title{
margin-bottom: 10px;
text-align:center;
width: 210px;
color:green;
border: solid black 2px;
}
input[type="button"]
{
background-color:green;
color: black;
border: solid black 2px;
width:100%
}
input[type="text"]
{
background-color:white;
border: solid black 2px;
width:100%
}
Calculator
A HTML PAGE WHO DISPLAY THE CALCULATOR. BY K S K "NIRMALA"
Page Title
function dis(val)
{
document.getElementById("result").value+=val
}
function solve()
{
let x=document.getElementById("result").value
let y=eval(x)
document.getElementById("result").value=y
}
function clr()
{
document.getElementById("result").value=""
}
.title{
margin-bottom: 10px;
text-align:center;
width: 210px;
color:green;
border: solid black 2px;
}
input[type="button"]
{
background-color:green;
color: black;
border: solid black 2px;
width:100%
}
input[type="text"]
{
background-color:white;
border: solid black 2px;
width:100%
}
//function that display value
function dis(val)
{
document.getElementById("result").value+=val
}
//function that evaluates the digit and return result
function solve()
{
let x = document.getElementById("result").value
let y = eval(x)
document.getElementById("result").value = y
}
//function that clear the display
function clr()
{
document.getElementById("result").value = ""
}
.title{
margin-bottom: 10px;
text-align:center;
width: 210px;
color:green;
border: solid black 2px;
}
input[type="button"]
{
background-color:green;
color: black;
border: solid black 2px;
width:100%
}
input[type="text"]
{
background-color:white;
border: solid black 2px;
width:100%
}
.title{
margin-bottom: 10px;
text-align:center;
width: 210px;
color:green;
border: solid black 2px;
}
input[type="button"]
{
background-color:green;
color: black;
border: solid black 2px;
width:100%
}
input[type="text"]
{
background-color:white;
border: solid black 2px;
width:100%
}
mobile dailer
“Education without values, as useful as it is, seems rather to make man a more clever devil.”
28/03/2022
Join me in making super fast UPI money transfers with Paytm!
Just send ₹1 to my number and get upto ₹100 cashback.
Use this link:
Paytm: Secure & Fast UPI Payments, Recharge Mobile & Pay Bills Send money with UPI using any bank account. Recharge mobile and pay bills.
a function using c++language@by "Educationlabtech"
using namespace std;
int main()
{
char insert;
int a,b,p=1234,amt;
coutinsert;
if(insert=='y')
{
cout
@ perform a patron of alfab using c++@
using namespace std;
int main()
{
int x,y,z,n;
char ch;
coutn;
for(x=1;x
@
int main()
{
int num1,num2;
printf("enter the value of number 1:-");
scanf("%d",&num1);
printf("enter the value of number 2:-");
scanf("%d",&num2);
if(num1==num2)
{
printf("num1=num2",num1,num2);
}
else
{
if(num1num2)
{
printf("num1>num2",num1,num2);
}
else
printf("thank you");
}
}
}
Click here to claim your Sponsored Listing.
Category
Contact the business
Telephone
Website
Address
Raj
274407