SlideShare a Scribd company logo
1 of 19
Download to read offline
ARRAY IMPLEMENTATION
<html>
<head>
<title>using javascript</title>
</head>
<body>
<script language="javascript">
var i;
var a = new Array(10);
for(i=0;i<10;i++)
{
a[i]=prompt ("enter the value");
}
for(i=0;i<10;i++)
{
document.write ("element of"+(i+1) +":"+a[i]+"<br>");
}
</script>
</body>
</html>
ARRAY IMPLEMENTATION
SIMPLE CALCULATOR APPLICATION
<html>
<head>
<title>calculator</title>
<script language="javascrit">
function add()
{
var a = document.f.t1.value;
var b = document.f.t2.value;
document.f.t3.value = parseFloat(a)+parseFloat(b);
}
function sub()
{
var a = document.f.t1.value;
var b = document.f.t2.value;
document.f.t3.value = parseFloat(a)-parseFloat(b);
}
function mul()
{
var a = document.f.t1.value;
var b = document.f.t2.value;
document.f.t3.value = parseFloat(a)*parseFloat(b);
}
function div()
{
var a = document.f.t1.value;
var b = document.f.t2.value;
document.f.t3.value = parseFloat(a)/parseFloat(b);
}
</script>
</head>
<body>
<from name="f">
<table width="50%" align="center" bgcolor="pink">
<tr>
<td>
<marquee><h1>using simple calculator</h1></marquee>
</td>
</tr>
</table>
<br>
<br>
<table align="center">
<tr>
<td>Enter the first value:</td>
<td><input type="text" size="25"name="6">
</td>
</tr>
<tr>
<td>Enter the second value;</td.
<td><input type="text" size="25" name="t2"></td>
</tr>
<tr>
<td>The resultant value is:</td>
<td><input type="text read only size="25"name="t3">
</td>
<td colspan="2" align="center">
<input type="button" value="ADD" on click="add()">
<input type="button" value="SUB" on click="sub()">
<input type="button" value="MUL" on click="mul()">
<input type="button" value="DIV" on click="div()">
<input type="reset" value="CLEAR">
</td>
</tr>
</table>
</form>
</body>
</html>
SIMPLE CALCULATOR APPLICATION
IMPLEMENTING MOUSE OVER EVENT

<html>
<head>
<title> mouse pointer</title>
<script language="javascript">
function move()
{
Window.open("calculator.html");
}
</script>
</head>
<body>
<center>
<h2>move the mouse pointer over the following tag</h2>
<a href="The page going to the img.html" on mouse over="move();">
click here!</a>
</center>
</body>
</html>
IMPLEMENTING MOUSE OVER EVENT
AUTOMATIC WINDOW LOADING

<html>
<head>
<title>new window</title>
<script language = "javascript">
{
var a = prompt("enter your HTML programe name","any programe name");
var b = open(a,"win","menubar=no toolbar=no statusbar=no hight=300 width=600");
}
function close()
{
b.close();
}
</script>
</head>
<body onload="set time outc"close()":2000)>
</body>
</html>
AUTOMATIC WINDOW LOADING
E-Mail SENDING WEB PAGE

<html>
<head>
<title>my link</title>
</head>
<body width="50" height="50" bgcolor="pink">
<h1><font color="maroon">
<u><l><center> Things to remember</center></l></u>
</font></h1>
<hr width="75%" size="t3"color="blue">
<font face="arial" color="green" size="+1">
Education is the mainfestation of prefection that is already in human. Everybody
wants to go to heaven, but nobody wants to die. Everyday there's sad news but each
day itself is glad news. Every good friend once was a stornger. Everyone hearts what
you say listen to what you say. Every person is a foot in some body's opinion.
Everything is possible, just not too probabke
</font><hr color="blue">
<center><h3>
<a href="mailto : pravin_vinhai@yahoo.com">
click here to send message</a></h3>
</center>
</body>
</html>
E-Mail SENDING WEB PAGE
A SIMPLE WEB PAGE DEMO

<html>
<head>
<title> my information</title></head>
<body bgcolor="c:dicyment and settings all usersdocumentmy picturessample
picturewater lillies.jpg">
<font color="red" size="+2"> webpage demo</font>
<center> <font color="maroon" size="+3"> About me</font></center>
<hr color="green">
<table align="center" border="1">
<tr>
<td>Name:</td>
<td>S.Praveen</td>
</tr>
<tr>
<td>Father name</td>
<td>K. Sampath</td>
</tr>
<tr>
<td>Date of birth</td>
<td>13.08.91</td>
</tr>
<tr>
<td>Gender</td>
<td>Male</td>
</tr>
<tr>
<td>Nationality</td>
<td>Indian</td>
</tr>
</table><hr color="green">
<center>
<font color="maroon" size="+3">Qualification</font>
</center>
<table align="center" border="1">
<tr>
<th>s.no</th>
<th>Course</th>
<th> Institution</th>
<th>Year</th>
<th>% of marks</th></tr>
<tr>
<td>1</td>
<td><font style="text-decoration:overline">m.sc.,</font</td>
<td>pachaiyappa's college</td>
<td>2009-2010</td>
<td>waiting results</td>
</tr>
<tr>
<td>2</td>
<td>hsc</td>
<td>pachiayappa's school</td>
<td>2008-2009</td>
<td>65%</td>
</tr>
<tr>
<td>3</td>
<td>sslc</td>
<td>pachiayappa's school</td>
<td>2006-2007</td>
<td>66%</td>
</tr></table><hr color="green">
<table border="1"align="center">
<tr>
<td>
<center><font color="red" size="+2">likes</font></center>
<ul type="square">
<li>playing cricket</li>
<li>watching tv</li>
<reading books</li>
</ul>
</td>
<td> <center><font color="red" size="+2">dis-likes</font></center>
<ol type="i">
<li>failure</li>
<li>laziness</li>
<li>craziness</li>
</ol></td>
</tr></table><center>are you interesting to see<a href="hobbies.html"> my
hobbies</a>
</center> </body> </html>
A SIMPLE WEB PAGE DEMO
OWN USING FRAMES

<html>
<frameset rows="70,*">
<frame src="head.html">
<frameset cols="35%,*">
<frame src="sct.html">
<frame src="desc.html">
<frameset></frameset>
</html>

head.html

<html>
<body bgcolor="pink">
<center><h1>Cellphones</h1></center>
</body>
</html>

sct.html

<html>
<body bgcolor="pink">
<center>
<img src="/home/yassir/Desktop/1.jpg">
</cetnter>
</body>
</html>

desc.html

<html> <body bgcolor="pink">
<b><center>HOW IS WONGS:CELLUAR PHONES</center></b><br><br>
<h1> There are two basic types of cellular phones analog and digital by for the phone
that most people(at least in the Usa) HAVE BEEN EXPOSED IS THE ANALOG
ALLURE PHONE HOWEVER THE DIGITAL
IS GROWING IN TERMS OF NUMBERS IN SERVICE AND ANY
DISEVESSION OF HOW CELLULAR PHONE WORK WOULD HER BE
COMPILE WITH AT COVERING ALL THE BASS.</h1>
</body> </html>
OWN USING FRAMES
EMPLOYEE PAY ROLL

<html>
<head><center><h2> Pay Slip </h2></center>
<title>pay slip</title>
<script language="javascript">
function de()
{
var a=parselnt(document.f1.t5.value);
var b=parselnt(document.f1.t6.value);
var c=parselnt(document.f1.t7.value);
document.f.t8.value=a+b+c;
}
function cl()
{
var d=parselnt(document.f1.t9.value);
var e=parselnt(document.f1.t10.value);
var f=parselnt(document.f1.t11.value);
document.f1.t12.value=d+e+f;
document.f1.t14.value=d+e+f;
}
function gr()
{
var g=parselnt(document.f1.t18.value);
var h=parselnt(document.f1.t12.value);
document.f1.t13.value=g+h;
}
</script>
</head>
<body bgcolor="pink">
<form name=f1>
<table align="center">
<tr><th>Empid</th><td><input type=text name=t1></td></tr>
<tr><th>Empname</th><td><input type=text name=t1></td></tr>
<tr><th>Designation</th><td><input type=text name=t3></td></tr>
</table>
<hr color="green">
<table align="left">
<tr><th>Deductions</th></tr>
<tr><td>Provident fund(pf)</td><td><input type=text name=t5></td></tr>
<tr><td>Special pf</td><td><input type=text name=t6></td></tr>
<tr>
<td>
<tr><td>FBF</td><td><input type=text name=t7></td></tr>
<tr><th>Full Deductions</th><td><input type=text name=t8 on
focus="de();"readonly></td></tr>
<table align="left">
<tr><th>Claims</th></tr>
<tr><td>Basic pay(pf)</td><td><input type=text name=t9></td></tr>
<tr><td>DA</td><td><input type=text name=t10></td></tr>
<tr><td>HRA</td><td><input type=text name=t11></td></tr>
<tr><th>Ful Claims</th><td><input type=text name=t12
on focus="cl();"readonly></td></tr>
<table align = "right" >
<tr><th>Gross salary</th><td><input type="text" name="t13" on
focus="gr();"reaonly></td></tr>
<tr><th>Net Salary</th><td><input type="text" name="t14"
onfocus="cl();" readonly></td></tr>
</table>
</form>
</body>
</html>
EMPLOYEE PAY ROLL

More Related Content

What's hot

Creating web api and consuming part 2
Creating web api and consuming part 2Creating web api and consuming part 2
Creating web api and consuming part 2Dipendra Shekhawat
 
QCon 2015 - Thinking in components: A new paradigm for Web UI
QCon 2015 - Thinking in components: A new paradigm for Web UIQCon 2015 - Thinking in components: A new paradigm for Web UI
QCon 2015 - Thinking in components: A new paradigm for Web UIOliver Häger
 
2013-06-25 - HTML5 & JavaScript Security
2013-06-25 - HTML5 & JavaScript Security2013-06-25 - HTML5 & JavaScript Security
2013-06-25 - HTML5 & JavaScript SecurityJohannes Hoppe
 
The project gutenberg e book, fairy tales from brazil, by elsie spicer
The project gutenberg e book, fairy tales from brazil, by elsie spicerThe project gutenberg e book, fairy tales from brazil, by elsie spicer
The project gutenberg e book, fairy tales from brazil, by elsie spicerAndrei Hortúa
 
Orchard Harvest 2014 - The Future of Widgets?
Orchard Harvest 2014 - The Future of Widgets?Orchard Harvest 2014 - The Future of Widgets?
Orchard Harvest 2014 - The Future of Widgets?Steve Taylor
 
Why You Should be Using Web Components Right Now. And How. ForwardJS July 2015
Why You Should be Using Web Components Right Now. And How. ForwardJS July 2015Why You Should be Using Web Components Right Now. And How. ForwardJS July 2015
Why You Should be Using Web Components Right Now. And How. ForwardJS July 2015Phil Leggetter
 
Form demoinplaywithmysql
Form demoinplaywithmysqlForm demoinplaywithmysql
Form demoinplaywithmysqlKnoldus Inc.
 
Html, CSS, Javascript, Jquery, Meteor應用
Html, CSS, Javascript, Jquery, Meteor應用Html, CSS, Javascript, Jquery, Meteor應用
Html, CSS, Javascript, Jquery, Meteor應用LearningTech
 
JavaScript Advanced - Useful methods to power up your code
JavaScript Advanced - Useful methods to power up your codeJavaScript Advanced - Useful methods to power up your code
JavaScript Advanced - Useful methods to power up your codeLaurence Svekis ✔
 
The Django Web Application Framework 2
The Django Web Application Framework 2The Django Web Application Framework 2
The Django Web Application Framework 2fishwarter
 
Django Templates
Django TemplatesDjango Templates
Django TemplatesWilly Liu
 

What's hot (18)

lect4
lect4lect4
lect4
 
JavaScript Training
JavaScript TrainingJavaScript Training
JavaScript Training
 
jQuery UI and Plugins
jQuery UI and PluginsjQuery UI and Plugins
jQuery UI and Plugins
 
[ WrocLoveRb 2012] user perspective testing using ruby
[ WrocLoveRb 2012] user perspective testing using ruby[ WrocLoveRb 2012] user perspective testing using ruby
[ WrocLoveRb 2012] user perspective testing using ruby
 
Creating web api and consuming part 2
Creating web api and consuming part 2Creating web api and consuming part 2
Creating web api and consuming part 2
 
QCon 2015 - Thinking in components: A new paradigm for Web UI
QCon 2015 - Thinking in components: A new paradigm for Web UIQCon 2015 - Thinking in components: A new paradigm for Web UI
QCon 2015 - Thinking in components: A new paradigm for Web UI
 
Polymer 1.0
Polymer 1.0Polymer 1.0
Polymer 1.0
 
2013-06-25 - HTML5 & JavaScript Security
2013-06-25 - HTML5 & JavaScript Security2013-06-25 - HTML5 & JavaScript Security
2013-06-25 - HTML5 & JavaScript Security
 
Polymer
PolymerPolymer
Polymer
 
The project gutenberg e book, fairy tales from brazil, by elsie spicer
The project gutenberg e book, fairy tales from brazil, by elsie spicerThe project gutenberg e book, fairy tales from brazil, by elsie spicer
The project gutenberg e book, fairy tales from brazil, by elsie spicer
 
Orchard Harvest 2014 - The Future of Widgets?
Orchard Harvest 2014 - The Future of Widgets?Orchard Harvest 2014 - The Future of Widgets?
Orchard Harvest 2014 - The Future of Widgets?
 
Why You Should be Using Web Components Right Now. And How. ForwardJS July 2015
Why You Should be Using Web Components Right Now. And How. ForwardJS July 2015Why You Should be Using Web Components Right Now. And How. ForwardJS July 2015
Why You Should be Using Web Components Right Now. And How. ForwardJS July 2015
 
Form demoinplaywithmysql
Form demoinplaywithmysqlForm demoinplaywithmysql
Form demoinplaywithmysql
 
Test upload
Test uploadTest upload
Test upload
 
Html, CSS, Javascript, Jquery, Meteor應用
Html, CSS, Javascript, Jquery, Meteor應用Html, CSS, Javascript, Jquery, Meteor應用
Html, CSS, Javascript, Jquery, Meteor應用
 
JavaScript Advanced - Useful methods to power up your code
JavaScript Advanced - Useful methods to power up your codeJavaScript Advanced - Useful methods to power up your code
JavaScript Advanced - Useful methods to power up your code
 
The Django Web Application Framework 2
The Django Web Application Framework 2The Django Web Application Framework 2
The Django Web Application Framework 2
 
Django Templates
Django TemplatesDjango Templates
Django Templates
 

Viewers also liked (15)

Advance Java - 2nd Unit
Advance Java - 2nd UnitAdvance Java - 2nd Unit
Advance Java - 2nd Unit
 
Datastructure
DatastructureDatastructure
Datastructure
 
MSc CST (5yr Integrated Course ) Syllabus - Madras University
MSc CST (5yr Integrated Course ) Syllabus - Madras UniversityMSc CST (5yr Integrated Course ) Syllabus - Madras University
MSc CST (5yr Integrated Course ) Syllabus - Madras University
 
Operating System
Operating SystemOperating System
Operating System
 
Computer Graphics
Computer GraphicsComputer Graphics
Computer Graphics
 
Java
JavaJava
Java
 
Unix Programs
Unix ProgramsUnix Programs
Unix Programs
 
Computer Science and Information Science 6th semester(2012 June/July) Questi...
 Computer Science and Information Science 6th semester(2012 June/July) Questi... Computer Science and Information Science 6th semester(2012 June/July) Questi...
Computer Science and Information Science 6th semester(2012 June/July) Questi...
 
Ooad
OoadOoad
Ooad
 
Mutimedia
MutimediaMutimedia
Mutimedia
 
E-Application of CST Forms
E-Application of CST FormsE-Application of CST Forms
E-Application of CST Forms
 
DDBMS
DDBMSDDBMS
DDBMS
 
Ooad
OoadOoad
Ooad
 
C f orm covering letter
C f orm covering letterC f orm covering letter
C f orm covering letter
 
Design and Simulation Microstrip patch Antenna using CST Microwave Studio
Design and Simulation Microstrip patch Antenna  using CST Microwave StudioDesign and Simulation Microstrip patch Antenna  using CST Microwave Studio
Design and Simulation Microstrip patch Antenna using CST Microwave Studio
 

Similar to 1cst

HTML5 New and Improved
HTML5   New and ImprovedHTML5   New and Improved
HTML5 New and ImprovedTimothy Fisher
 
Vaadin Components @ Angular U
Vaadin Components @ Angular UVaadin Components @ Angular U
Vaadin Components @ Angular UJoonas Lehtinen
 
計算機概論20161205
計算機概論20161205計算機概論20161205
計算機概論20161205志宇 許
 
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!Coulawrence
 
Learn JavaScript HTML & CSS
Learn JavaScript HTML & CSSLearn JavaScript HTML & CSS
Learn JavaScript HTML & CSSBilal Mirza
 
Caracteristicas Basicas De Htlm
Caracteristicas Basicas De HtlmCaracteristicas Basicas De Htlm
Caracteristicas Basicas De HtlmMaria S Rivera
 
20190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React201920190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React2019Makoto Mori
 
#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]Dalibor Gogic
 
Building iPhone Web Apps using "classic" Domino
Building iPhone Web Apps using "classic" DominoBuilding iPhone Web Apps using "classic" Domino
Building iPhone Web Apps using "classic" DominoRob Bontekoe
 
Practical PHP by example Jan Leth-Kjaer
Practical PHP by example   Jan Leth-KjaerPractical PHP by example   Jan Leth-Kjaer
Practical PHP by example Jan Leth-KjaerCOMMON Europe
 
JavaScript DOM - Dynamic interactive Code
JavaScript DOM - Dynamic interactive CodeJavaScript DOM - Dynamic interactive Code
JavaScript DOM - Dynamic interactive CodeLaurence Svekis ✔
 
HTML SERVER CONTROL - ASP.NET WITH C#
HTML SERVER CONTROL  - ASP.NET WITH C#HTML SERVER CONTROL  - ASP.NET WITH C#
HTML SERVER CONTROL - ASP.NET WITH C#priya Nithya
 
HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2James Pearce
 

Similar to 1cst (20)

Web technology lab manual
Web technology lab manualWeb technology lab manual
Web technology lab manual
 
HTML5 New and Improved
HTML5   New and ImprovedHTML5   New and Improved
HTML5 New and Improved
 
Introduction to Html5
Introduction to Html5Introduction to Html5
Introduction to Html5
 
Vaadin Components @ Angular U
Vaadin Components @ Angular UVaadin Components @ Angular U
Vaadin Components @ Angular U
 
HTML5
HTML5HTML5
HTML5
 
WebAPI Odata Knockout
WebAPI Odata KnockoutWebAPI Odata Knockout
WebAPI Odata Knockout
 
計算機概論20161205
計算機概論20161205計算機概論20161205
計算機概論20161205
 
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
TURN YOUR CELL PHONE FROM A LIABILITY INTO AN ASSET!
 
Learn JavaScript HTML & CSS
Learn JavaScript HTML & CSSLearn JavaScript HTML & CSS
Learn JavaScript HTML & CSS
 
Practica n° 7
Practica n° 7Practica n° 7
Practica n° 7
 
Caracteristicas Basicas De Htlm
Caracteristicas Basicas De HtlmCaracteristicas Basicas De Htlm
Caracteristicas Basicas De Htlm
 
20190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React201920190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React2019
 
#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]
 
Md5 decrypter
Md5 decrypterMd5 decrypter
Md5 decrypter
 
Building iPhone Web Apps using "classic" Domino
Building iPhone Web Apps using "classic" DominoBuilding iPhone Web Apps using "classic" Domino
Building iPhone Web Apps using "classic" Domino
 
Practical PHP by example Jan Leth-Kjaer
Practical PHP by example   Jan Leth-KjaerPractical PHP by example   Jan Leth-Kjaer
Practical PHP by example Jan Leth-Kjaer
 
JavaScript DOM - Dynamic interactive Code
JavaScript DOM - Dynamic interactive CodeJavaScript DOM - Dynamic interactive Code
JavaScript DOM - Dynamic interactive Code
 
HTML SERVER CONTROL - ASP.NET WITH C#
HTML SERVER CONTROL  - ASP.NET WITH C#HTML SERVER CONTROL  - ASP.NET WITH C#
HTML SERVER CONTROL - ASP.NET WITH C#
 
Print this
Print thisPrint this
Print this
 
HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2
 

Recently uploaded

Guide Complete Set of Residential Architectural Drawings PDF
Guide Complete Set of Residential Architectural Drawings PDFGuide Complete Set of Residential Architectural Drawings PDF
Guide Complete Set of Residential Architectural Drawings PDFChandresh Chudasama
 
FULL ENJOY Call girls in Paharganj Delhi | 8377087607
FULL ENJOY Call girls in Paharganj Delhi | 8377087607FULL ENJOY Call girls in Paharganj Delhi | 8377087607
FULL ENJOY Call girls in Paharganj Delhi | 8377087607dollysharma2066
 
Marketplace and Quality Assurance Presentation - Vincent Chirchir
Marketplace and Quality Assurance Presentation - Vincent ChirchirMarketplace and Quality Assurance Presentation - Vincent Chirchir
Marketplace and Quality Assurance Presentation - Vincent Chirchirictsugar
 
Buy gmail accounts.pdf Buy Old Gmail Accounts
Buy gmail accounts.pdf Buy Old Gmail AccountsBuy gmail accounts.pdf Buy Old Gmail Accounts
Buy gmail accounts.pdf Buy Old Gmail AccountsBuy Verified Accounts
 
International Business Environments and Operations 16th Global Edition test b...
International Business Environments and Operations 16th Global Edition test b...International Business Environments and Operations 16th Global Edition test b...
International Business Environments and Operations 16th Global Edition test b...ssuserf63bd7
 
TriStar Gold Corporate Presentation - April 2024
TriStar Gold Corporate Presentation - April 2024TriStar Gold Corporate Presentation - April 2024
TriStar Gold Corporate Presentation - April 2024Adnet Communications
 
Innovation Conference 5th March 2024.pdf
Innovation Conference 5th March 2024.pdfInnovation Conference 5th March 2024.pdf
Innovation Conference 5th March 2024.pdfrichard876048
 
Investment in The Coconut Industry by Nancy Cheruiyot
Investment in The Coconut Industry by Nancy CheruiyotInvestment in The Coconut Industry by Nancy Cheruiyot
Investment in The Coconut Industry by Nancy Cheruiyotictsugar
 
MAHA Global and IPR: Do Actions Speak Louder Than Words?
MAHA Global and IPR: Do Actions Speak Louder Than Words?MAHA Global and IPR: Do Actions Speak Louder Than Words?
MAHA Global and IPR: Do Actions Speak Louder Than Words?Olivia Kresic
 
Annual General Meeting Presentation Slides
Annual General Meeting Presentation SlidesAnnual General Meeting Presentation Slides
Annual General Meeting Presentation SlidesKeppelCorporation
 
Organizational Structure Running A Successful Business
Organizational Structure Running A Successful BusinessOrganizational Structure Running A Successful Business
Organizational Structure Running A Successful BusinessSeta Wicaksana
 
NewBase 19 April 2024 Energy News issue - 1717 by Khaled Al Awadi.pdf
NewBase  19 April  2024  Energy News issue - 1717 by Khaled Al Awadi.pdfNewBase  19 April  2024  Energy News issue - 1717 by Khaled Al Awadi.pdf
NewBase 19 April 2024 Energy News issue - 1717 by Khaled Al Awadi.pdfKhaled Al Awadi
 
Memorándum de Entendimiento (MoU) entre Codelco y SQM
Memorándum de Entendimiento (MoU) entre Codelco y SQMMemorándum de Entendimiento (MoU) entre Codelco y SQM
Memorándum de Entendimiento (MoU) entre Codelco y SQMVoces Mineras
 
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort ServiceCall US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort Servicecallgirls2057
 
Traction part 2 - EOS Model JAX Bridges.
Traction part 2 - EOS Model JAX Bridges.Traction part 2 - EOS Model JAX Bridges.
Traction part 2 - EOS Model JAX Bridges.Anamaria Contreras
 
Darshan Hiranandani [News About Next CEO].pdf
Darshan Hiranandani [News About Next CEO].pdfDarshan Hiranandani [News About Next CEO].pdf
Darshan Hiranandani [News About Next CEO].pdfShashank Mehta
 
Cyber Security Training in Office Environment
Cyber Security Training in Office EnvironmentCyber Security Training in Office Environment
Cyber Security Training in Office Environmentelijahj01012
 
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptx
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptxThe-Ethical-issues-ghhhhhhhhjof-Byjus.pptx
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptxmbikashkanyari
 
8447779800, Low rate Call girls in Uttam Nagar Delhi NCR
8447779800, Low rate Call girls in Uttam Nagar Delhi NCR8447779800, Low rate Call girls in Uttam Nagar Delhi NCR
8447779800, Low rate Call girls in Uttam Nagar Delhi NCRashishs7044
 

Recently uploaded (20)

Guide Complete Set of Residential Architectural Drawings PDF
Guide Complete Set of Residential Architectural Drawings PDFGuide Complete Set of Residential Architectural Drawings PDF
Guide Complete Set of Residential Architectural Drawings PDF
 
FULL ENJOY Call girls in Paharganj Delhi | 8377087607
FULL ENJOY Call girls in Paharganj Delhi | 8377087607FULL ENJOY Call girls in Paharganj Delhi | 8377087607
FULL ENJOY Call girls in Paharganj Delhi | 8377087607
 
Marketplace and Quality Assurance Presentation - Vincent Chirchir
Marketplace and Quality Assurance Presentation - Vincent ChirchirMarketplace and Quality Assurance Presentation - Vincent Chirchir
Marketplace and Quality Assurance Presentation - Vincent Chirchir
 
Buy gmail accounts.pdf Buy Old Gmail Accounts
Buy gmail accounts.pdf Buy Old Gmail AccountsBuy gmail accounts.pdf Buy Old Gmail Accounts
Buy gmail accounts.pdf Buy Old Gmail Accounts
 
International Business Environments and Operations 16th Global Edition test b...
International Business Environments and Operations 16th Global Edition test b...International Business Environments and Operations 16th Global Edition test b...
International Business Environments and Operations 16th Global Edition test b...
 
TriStar Gold Corporate Presentation - April 2024
TriStar Gold Corporate Presentation - April 2024TriStar Gold Corporate Presentation - April 2024
TriStar Gold Corporate Presentation - April 2024
 
Innovation Conference 5th March 2024.pdf
Innovation Conference 5th March 2024.pdfInnovation Conference 5th March 2024.pdf
Innovation Conference 5th March 2024.pdf
 
Investment in The Coconut Industry by Nancy Cheruiyot
Investment in The Coconut Industry by Nancy CheruiyotInvestment in The Coconut Industry by Nancy Cheruiyot
Investment in The Coconut Industry by Nancy Cheruiyot
 
MAHA Global and IPR: Do Actions Speak Louder Than Words?
MAHA Global and IPR: Do Actions Speak Louder Than Words?MAHA Global and IPR: Do Actions Speak Louder Than Words?
MAHA Global and IPR: Do Actions Speak Louder Than Words?
 
Annual General Meeting Presentation Slides
Annual General Meeting Presentation SlidesAnnual General Meeting Presentation Slides
Annual General Meeting Presentation Slides
 
Organizational Structure Running A Successful Business
Organizational Structure Running A Successful BusinessOrganizational Structure Running A Successful Business
Organizational Structure Running A Successful Business
 
NewBase 19 April 2024 Energy News issue - 1717 by Khaled Al Awadi.pdf
NewBase  19 April  2024  Energy News issue - 1717 by Khaled Al Awadi.pdfNewBase  19 April  2024  Energy News issue - 1717 by Khaled Al Awadi.pdf
NewBase 19 April 2024 Energy News issue - 1717 by Khaled Al Awadi.pdf
 
No-1 Call Girls In Goa 93193 VIP 73153 Escort service In North Goa Panaji, Ca...
No-1 Call Girls In Goa 93193 VIP 73153 Escort service In North Goa Panaji, Ca...No-1 Call Girls In Goa 93193 VIP 73153 Escort service In North Goa Panaji, Ca...
No-1 Call Girls In Goa 93193 VIP 73153 Escort service In North Goa Panaji, Ca...
 
Memorándum de Entendimiento (MoU) entre Codelco y SQM
Memorándum de Entendimiento (MoU) entre Codelco y SQMMemorándum de Entendimiento (MoU) entre Codelco y SQM
Memorándum de Entendimiento (MoU) entre Codelco y SQM
 
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort ServiceCall US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
 
Traction part 2 - EOS Model JAX Bridges.
Traction part 2 - EOS Model JAX Bridges.Traction part 2 - EOS Model JAX Bridges.
Traction part 2 - EOS Model JAX Bridges.
 
Darshan Hiranandani [News About Next CEO].pdf
Darshan Hiranandani [News About Next CEO].pdfDarshan Hiranandani [News About Next CEO].pdf
Darshan Hiranandani [News About Next CEO].pdf
 
Cyber Security Training in Office Environment
Cyber Security Training in Office EnvironmentCyber Security Training in Office Environment
Cyber Security Training in Office Environment
 
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptx
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptxThe-Ethical-issues-ghhhhhhhhjof-Byjus.pptx
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptx
 
8447779800, Low rate Call girls in Uttam Nagar Delhi NCR
8447779800, Low rate Call girls in Uttam Nagar Delhi NCR8447779800, Low rate Call girls in Uttam Nagar Delhi NCR
8447779800, Low rate Call girls in Uttam Nagar Delhi NCR
 

1cst

  • 1. ARRAY IMPLEMENTATION <html> <head> <title>using javascript</title> </head> <body> <script language="javascript"> var i; var a = new Array(10); for(i=0;i<10;i++) { a[i]=prompt ("enter the value"); } for(i=0;i<10;i++) { document.write ("element of"+(i+1) +":"+a[i]+"<br>"); } </script> </body> </html>
  • 3. SIMPLE CALCULATOR APPLICATION <html> <head> <title>calculator</title> <script language="javascrit"> function add() { var a = document.f.t1.value; var b = document.f.t2.value; document.f.t3.value = parseFloat(a)+parseFloat(b); } function sub() { var a = document.f.t1.value; var b = document.f.t2.value; document.f.t3.value = parseFloat(a)-parseFloat(b); } function mul() { var a = document.f.t1.value; var b = document.f.t2.value; document.f.t3.value = parseFloat(a)*parseFloat(b); } function div() { var a = document.f.t1.value; var b = document.f.t2.value; document.f.t3.value = parseFloat(a)/parseFloat(b); } </script> </head> <body> <from name="f"> <table width="50%" align="center" bgcolor="pink"> <tr> <td> <marquee><h1>using simple calculator</h1></marquee> </td> </tr> </table> <br>
  • 4. <br> <table align="center"> <tr> <td>Enter the first value:</td> <td><input type="text" size="25"name="6"> </td> </tr> <tr> <td>Enter the second value;</td. <td><input type="text" size="25" name="t2"></td> </tr> <tr> <td>The resultant value is:</td> <td><input type="text read only size="25"name="t3"> </td> <td colspan="2" align="center"> <input type="button" value="ADD" on click="add()"> <input type="button" value="SUB" on click="sub()"> <input type="button" value="MUL" on click="mul()"> <input type="button" value="DIV" on click="div()"> <input type="reset" value="CLEAR"> </td> </tr> </table> </form> </body> </html>
  • 6. IMPLEMENTING MOUSE OVER EVENT <html> <head> <title> mouse pointer</title> <script language="javascript"> function move() { Window.open("calculator.html"); } </script> </head> <body> <center> <h2>move the mouse pointer over the following tag</h2> <a href="The page going to the img.html" on mouse over="move();"> click here!</a> </center> </body> </html>
  • 8. AUTOMATIC WINDOW LOADING <html> <head> <title>new window</title> <script language = "javascript"> { var a = prompt("enter your HTML programe name","any programe name"); var b = open(a,"win","menubar=no toolbar=no statusbar=no hight=300 width=600"); } function close() { b.close(); } </script> </head> <body onload="set time outc"close()":2000)> </body> </html>
  • 10. E-Mail SENDING WEB PAGE <html> <head> <title>my link</title> </head> <body width="50" height="50" bgcolor="pink"> <h1><font color="maroon"> <u><l><center> Things to remember</center></l></u> </font></h1> <hr width="75%" size="t3"color="blue"> <font face="arial" color="green" size="+1"> Education is the mainfestation of prefection that is already in human. Everybody wants to go to heaven, but nobody wants to die. Everyday there's sad news but each day itself is glad news. Every good friend once was a stornger. Everyone hearts what you say listen to what you say. Every person is a foot in some body's opinion. Everything is possible, just not too probabke </font><hr color="blue"> <center><h3> <a href="mailto : pravin_vinhai@yahoo.com"> click here to send message</a></h3> </center> </body> </html>
  • 12. A SIMPLE WEB PAGE DEMO <html> <head> <title> my information</title></head> <body bgcolor="c:dicyment and settings all usersdocumentmy picturessample picturewater lillies.jpg"> <font color="red" size="+2"> webpage demo</font> <center> <font color="maroon" size="+3"> About me</font></center> <hr color="green"> <table align="center" border="1"> <tr> <td>Name:</td> <td>S.Praveen</td> </tr> <tr> <td>Father name</td> <td>K. Sampath</td> </tr> <tr> <td>Date of birth</td> <td>13.08.91</td> </tr> <tr> <td>Gender</td> <td>Male</td> </tr> <tr> <td>Nationality</td> <td>Indian</td> </tr> </table><hr color="green"> <center> <font color="maroon" size="+3">Qualification</font> </center> <table align="center" border="1"> <tr> <th>s.no</th> <th>Course</th> <th> Institution</th> <th>Year</th>
  • 13. <th>% of marks</th></tr> <tr> <td>1</td> <td><font style="text-decoration:overline">m.sc.,</font</td> <td>pachaiyappa's college</td> <td>2009-2010</td> <td>waiting results</td> </tr> <tr> <td>2</td> <td>hsc</td> <td>pachiayappa's school</td> <td>2008-2009</td> <td>65%</td> </tr> <tr> <td>3</td> <td>sslc</td> <td>pachiayappa's school</td> <td>2006-2007</td> <td>66%</td> </tr></table><hr color="green"> <table border="1"align="center"> <tr> <td> <center><font color="red" size="+2">likes</font></center> <ul type="square"> <li>playing cricket</li> <li>watching tv</li> <reading books</li> </ul> </td> <td> <center><font color="red" size="+2">dis-likes</font></center> <ol type="i"> <li>failure</li> <li>laziness</li> <li>craziness</li> </ol></td> </tr></table><center>are you interesting to see<a href="hobbies.html"> my hobbies</a> </center> </body> </html>
  • 14. A SIMPLE WEB PAGE DEMO
  • 15. OWN USING FRAMES <html> <frameset rows="70,*"> <frame src="head.html"> <frameset cols="35%,*"> <frame src="sct.html"> <frame src="desc.html"> <frameset></frameset> </html> head.html <html> <body bgcolor="pink"> <center><h1>Cellphones</h1></center> </body> </html> sct.html <html> <body bgcolor="pink"> <center> <img src="/home/yassir/Desktop/1.jpg"> </cetnter> </body> </html> desc.html <html> <body bgcolor="pink"> <b><center>HOW IS WONGS:CELLUAR PHONES</center></b><br><br> <h1> There are two basic types of cellular phones analog and digital by for the phone that most people(at least in the Usa) HAVE BEEN EXPOSED IS THE ANALOG ALLURE PHONE HOWEVER THE DIGITAL IS GROWING IN TERMS OF NUMBERS IN SERVICE AND ANY DISEVESSION OF HOW CELLULAR PHONE WORK WOULD HER BE COMPILE WITH AT COVERING ALL THE BASS.</h1> </body> </html>
  • 17. EMPLOYEE PAY ROLL <html> <head><center><h2> Pay Slip </h2></center> <title>pay slip</title> <script language="javascript"> function de() { var a=parselnt(document.f1.t5.value); var b=parselnt(document.f1.t6.value); var c=parselnt(document.f1.t7.value); document.f.t8.value=a+b+c; } function cl() { var d=parselnt(document.f1.t9.value); var e=parselnt(document.f1.t10.value); var f=parselnt(document.f1.t11.value); document.f1.t12.value=d+e+f; document.f1.t14.value=d+e+f; } function gr() { var g=parselnt(document.f1.t18.value); var h=parselnt(document.f1.t12.value); document.f1.t13.value=g+h; } </script> </head> <body bgcolor="pink"> <form name=f1> <table align="center"> <tr><th>Empid</th><td><input type=text name=t1></td></tr> <tr><th>Empname</th><td><input type=text name=t1></td></tr> <tr><th>Designation</th><td><input type=text name=t3></td></tr> </table> <hr color="green"> <table align="left"> <tr><th>Deductions</th></tr> <tr><td>Provident fund(pf)</td><td><input type=text name=t5></td></tr> <tr><td>Special pf</td><td><input type=text name=t6></td></tr>
  • 18. <tr> <td> <tr><td>FBF</td><td><input type=text name=t7></td></tr> <tr><th>Full Deductions</th><td><input type=text name=t8 on focus="de();"readonly></td></tr> <table align="left"> <tr><th>Claims</th></tr> <tr><td>Basic pay(pf)</td><td><input type=text name=t9></td></tr> <tr><td>DA</td><td><input type=text name=t10></td></tr> <tr><td>HRA</td><td><input type=text name=t11></td></tr> <tr><th>Ful Claims</th><td><input type=text name=t12 on focus="cl();"readonly></td></tr> <table align = "right" > <tr><th>Gross salary</th><td><input type="text" name="t13" on focus="gr();"reaonly></td></tr> <tr><th>Net Salary</th><td><input type="text" name="t14" onfocus="cl();" readonly></td></tr> </table> </form> </body> </html>