Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

dsfssg

<!DOCTYPE html>
<html>
<title>Web Page Design</title>
<head>
<script>
function sayHello(r) {
   document.write("Hello, Coding Ground!"+r);
}
sayHello();
</script>
</head>
<body>
</body>
</html>

hello

<!DOCTYPE html>
<html>
<title>Web Page Design</title>
<head>
<script>
function sayHello() {
   document.write("Hello, Coding Ground!");
}
sayHello();
</script>
</head>
<body>
</body>
</html>

qsaad

<!DOCTYPE html>
<html>
<title>Web Page Design</title>
<head>
<script>
function sayHello() {
   document.write("Hello, Coding Ground!");
}
sayHello();
</script>
</head>
<body>
</body>
</html>

adsfadsf

<!DOCTYPE html>
<html>
<title>Web Page Design</title>
<head>
<script>
function sayHello() {
   document.write("Hello, Coding Ground!");
}
sayHello();
</script>
</head>
<body>
</body>
</html>

Polly's project

<!DOCTYPE html>
<html>
<title>Web Page Design</title>
<head>
<script>
function sayHello(my name is Polly) {
   document.write("Hello, Coding Ground!");
}
sayHello();
</script>
</head>
<body>
</body>
</html>

ProgrammingReportOne_EBowser

<!DOCTYPE html> <html> <body> 
<H1>Important: Operating System Upgrade Notification</H1>
<p>Dear employees, please note that an important operating system upgrade is scheduled for the office location groups provided below. Computers in each group will be upgraded on the date specified to the right of each location grouping</p>

<script type="text/javascript"> 
 
var today = new Date();     
 
var UpgradeDay = new Date("October 18, 2017");
var UpgradeDay2 = new Date("October 20, 2017");
var UpgradeDay3 = new Date("October 23, 2017");
var UpgradeDay4 = new Date("October 26, 2017");
var UpgradeDay5 = new Date("October 28, 2017");
var msPerDay = 24 * 60 * 60 * 1000; 
var timeLeft = (UpgradeDay.getTime() - today.getTime()); 
var days = timeLeft / msPerDay; 
var G1daysLeft = Math.floor(days);
var G2daysLeft = (G1daysLeft + 2);
var G3daysLeft = (G1daysLeft + 5);
var G4daysLeft = (G1daysLeft + 8);
var G5daysLeft = (G1daysLeft + 10);
 
document.write("<u>Group 1</u>: San Jose on [ " + UpgradeDay.toDateString() + " ]<ul><li><b>" + G1daysLeft + " days </b> Remaining Until Upgrade!</li></ul>");
document.write("<u>Group 2</u>: San Antonio on [ " + UpgradeDay2.toDateString() + " ]<ul><li><b>" + G2daysLeft + " days </b> Remaining Until Upgrade!</li></ul>");
document.write("<u>Group 3</u>: Seattle on [ " + UpgradeDay3.toDateString() + " ]<ul><li><b>" + G3daysLeft + " days </b> Remaining Until Upgrade!</li></ul>");
document.write("<u>Group 4</u>: Seattle on [ " + UpgradeDay4.toDateString() + " ]<ul><li><b>" + G4daysLeft + " days </b> Remaining Until Upgrade!</li></ul>");
document.write("<u>Group 5</u>: Seattle on [ " + UpgradeDay5.toDateString() + " ]<ul><li><b>" + G5daysLeft + " days </b> Remaining Until Upgrade!</li></ul>");

</script> </body> </html>

IT 505 Milestone 1

<!DOCTYPE html>
<html>
    <body>
        <script type="text/javascript">
            
            var today = new Date ();
            
            var UpgradeDay = new Date ("November 2, 2017")
            var msPerDay = 24 * 60 * 60 * 1000;
            var timeLeft =(UpgradeDay.getTime() - today.getTime());
            var days = timeLeft / msPerDay;
            var daysLeft = Math.floor(days);
            
            document.write("There are only <BR><H4>" + daysLeft + " days </H4> Until Your Computer Upgrade <P>");
            
        </script>
    </body>
</html>

Online Javascript Editor

<!DOCTYPE html>
<html>
<title>Web Page Design</title>
<head>
<script>
function sayHello() {
   document.write("Hello employees, There is a new operating system upgrade happening between 2am and 5am on September 20, 2017!");
}
sayHello();
</script>
</head>
<body>
</body>
</html>

Group 1

<!DOCTYPE html>
<html>
<title>Web Page Design</title>
<head>
<script>
function sayHello() {
   document.write("Hello, Coding Ground!");
}
sayHello();
</script>
</head>
<body>
</body>
</html>

Online Javascript Editor

<!DOCTYPE html>
<html>
<title>Web Page Design</title>
<head>
<script>
function sayHello() {
   document.write("Hello, Coding Ground!");
}
sayHello();
</script>
</head>
<body>
    <script type="text/javascript">
var today = new Date();
var UpgradeDay = new Date("January 19, 2015");
var msPerDay = 24 * 60 * 60 * 1000;
var timeLeft = (UpgradeDay.getTime() - today.getTime());
var days = timeLeft / msPerDay;
var daysLeft = Math.floor(days);
document.write("There are only<BR> <H4>" + daysLeft + " days </H4> Until Your Computer Upgrade<P>");
</script>

</body>
</html>

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.