SlideShare a Scribd company logo
AN OVERVIEW OF
HTML,
CSS &
JAVA SCRIPT
HYPER TEXTMARKUP LANGUAGE
WHAT IS HTML?
HTML STANDS FOR HYPER TEXT MARKUP LANGUAGE
HTML IS A MARKUP LANGUAGE
A MARKUP LANGUAGE IS A SET OF MARKUP TAGS
THE TAGS DESCRIBE DOCUMENT CONTENT
HTML DOCUMENTS CONTAIN HTML TAGS AND PLAIN TEXT
HTML DOCUMENTS ARE ALSO CALLED WEB PAGES
HTML TAGS
Html tags are keywords (tag names) surrounded by ANGLE BRACKETS
like <html>
Html tags normally come in pairs like <p> and </p>
The first tag in a pair is the START TAG, the second tag is the END TAG
The end tag is written like the start tag, with a SLASH before the tag name
START and END tags are also called OPENING TAGS and CLOSING
TAGS
EXAMPLE:
<tagname>content</tagname>
HTML EXAMPLE
<html>
<body>
<h1>my first heading</h1>
<p>my first paragraph.</p>
</body>
</html>
EXAMPLE EXPLAINED
 The text between <html> and </html> DESCRIBES THE WEB PAGE
 The text between <body> and </body> is the VISIBLE PAGE CONTENT
 The text between <h1> and </h1> is DISPLAYED AS A HEADING
 The text between <p> and </p> is DISPLAYED AS A PARAGRAPH
HTML EDITORS
Write html using notepad or textedit
Html can be edited by using a professional html editor like:
Adobe dreamweaver
Microsoft expression web
Coffeecup html editor
However, for learning html we recommend a text editor like notepad (pc) or
textedit (mac).
When saving an html file, use either the .htm or the .html file extension.
there is no difference, it is entirely up to you.
HTML TAG
Html headings are defined with the <h1> to <h6> tags
<h1>this is a heading</h1>
Html paragraphs are defined with the <p> tag.
<p>this is a paragraph.</p>
Html links are defined with the <a> tag.
<a href="http://espesolutions.com">this is a link</a>
Html images are defined with the <img> tag.
<img src=“espelogo.jpg” alt=“espesolutions.com” width=“105”
height=“105”>
Html uses tags like <b> and <i> for formatting output, like bold or italic text.
<b>this text is bold</b>,<i>this text is italic</i>
HTMLATTRIBUTES
Html elements can have ATTRIBUTES
Attributes provide ADDITIONAL INFORMATION about an element
Attributes are always specified in THE START TAG
Attributes come in name/value pairs like: name="value“
<IMG SRC=“ESPELOGO.JPG” WIDTH=“105” HEIGHT=“105”>
↓ ↓ ↓ ↓ ↓ ↓
NAME VALUE NAME VALUE NAME VALUE
HTML TABLES
 Tables are defined with the <table> tag.
 Tables are divided into table rows with the <tr> tag.
 Table rows are divided into table data with the <td> tag.
 A table row can also be divided into table headings with the <th> tag.
Example
<table>
<tr>
<th>name</th><th>qualification</th>
</tr>
<tr>
<td>sandeep</td><td>cse</td>
</tr>
</table>
HTML LIST
HTML CAN HAVE UNORDERED LISTS &ORDERED LISTS
UNORDERED HTML LIST
 The first item
 The second item
 The third item
 The fourth item
ORDERED HTML LIST
1. The first item
2. The second item
3. The third item
4. The fourth item
EXAMPLE
UNORDERD LIST:
<ul>
<li>java</li>
<li>c</li>
<li>c++</li>
</ul>
ORDERD LIST:
<ol>
<li>java</li>
<li>c</li>
<li>c++</li>
</ol>
HTML FORMS
Html forms are used to select different kinds of user input.
Html forms are used to pass data to a server.
An html form can contain input elements like text fields,
checkboxes, radio-buttons, submit buttons and more. a form can
also contain select lists, textarea, fieldset, legend, and label
elements.
SYNTAX:
<form>
input elements
</form>
INPUT ELEMENT
The most important form element is the <input> element.
The <input> element is used to select user information.
An <input> element can vary in many ways, depending
on the type attribute.
An <input> element can be of type text field, checkbox,
password, radio button, submit button, and more.
TEXT FIELDS
DEFINES ONE LINE INPUT FIELD WHERE USER CAN ENTER TEXT.
EXAMPLE:
<form>
FIRST NAME: <input type="text“ name="firstname"><br>
LAST NAME: <input type="text" name="lastname">
</form>
OUTPUT:
FIRST NAME:
LAST NAME:
PASSWORD FIELD
 PASSWORD defines a password field.
<input type=“password”>
 the text entered in the textfield will view as *******.
Syntax:
password:<input type =“password” name=“ password”>
OUTPUT:
PASSWORD: *********
RADIO BUTTONS
Radio buttons let a user select only one of a limited number
of choices.
<input type="radio“>
SYNTAX:
<form>
<input type="radio" name=“gender"
value="male">male<br>
<input type="radio" name=“gender"
value="female">female
</form>
OUTPUT:
Male
Female
CHECKBOXES
Checkboxes let a user select zero or more options of a limited
number of choices.
<input type="checkbox“>
SYNTAX:
<form>
<input type="checkbox" name="vehicle" value="bike">i have a
bike<br>
<input type="checkbox" name="vehicle" value="car">i have a car
</form>
OUTPUT:
I HAVE A BIKE
I HAVE A CAR
SUBMIT
A submit button is used to send form data to a server.
The data is sent to the page specified in the form's action attribute. t
The file defined in the action attribute usually does something with
the received input.
<input type="submit“>
TYPE: SUBMIT.
NAME: Value used by the cgi (common gateway interface)script for
processing.
VALUE: Determines the text label on the button, usually submit
query.
CGI: External program use standard input and output for data
exchange.
SUBMIT
SYNTAX:
<form name="input" action="demo" method="get">
username: <input type="text" name="user">
password:<input type=“password” name=“pass”>
<input type="submit“ value=“submit” >
</form>
OUTPUT:
RESET
It allows the surfer to clear all the input in the form.
For reset give <input type=“reset”>
The browser display reset button.
DROP-DOWN LIST
Let a user select one or more choices from limited number of options.
SYNTAX:
<html>
<body>
<select>
<option value=“fiat">fiat</option>
<option value="audi">audi</option>
</select>
</body>
</html>
TEXTAREA
The <textarea> tag defines a multi-line text input control.
The size of a text area can be specified by the cols and rows
attributes, or even better; through css' height and width
properties.
Syntax:
<html>
< body>
<textarea rows="10"
cols="30">
</textarea>
</body>
</html>
output
An Overview of HTML, CSS & Java Script
CASCADING STYLE SHEETS
(CSS)
WHAT IS CSS?
Css stands for cascading style sheets
Styles define how to display html elements
Styles were added to html 4.0 to solve a problem
External style sheets can save a lot of work
External style sheets are stored in css files
CSS SYNTAX
A CSS rule set consists of a selector and a declaration block:
CSS EXAMPLE
A css declaration always ends with a semicolon, and declaration
groups are surrounded by curly braces:
p {
color: red;
text-align: center;
}
CSS SELECTORS
Css selectors are used to "find" (or select) html elements based on
their id, classes, types, attributes, values of attributes and much more.
element selector
id selector
class selector
THE ELEMENT SELECTOR
The element selector selects elements based on the element name.
p {
text-align: center;
color: red;
}
THE ID SELECTOR
The id selector uses the id attribute of an html tag to find the specific
element.
An id should be unique within a page, so you should use the id
selector when you want to find a single, unique element.
<p id=“para1”>hi</p>
#para1
{
text-align: center;
color: red;
}
THE CLASS SELECTOR
The class selector finds elements with the specific class.
The class selector uses the html class attribute.
Html elements with class="center"
.center{
text-align : center;
color: red;
}
THREE WAYS TO INSERT CSS
There are three ways of inserting a style sheet:
External style sheet
Internal style sheet
Inline style
EXTERNAL STYLE SHEET
An external style sheet is ideal when the style is applied to many pages. with
an external style sheet, you can change the look of an entire web site by
changing just one file.
<head>
<link rel="stylesheet" type="text/css“ href="mystyle.css">
</head>
INTERNAL STYLE SHEET
An internal style sheet should be used when a single document has a
unique style. you define internal styles in the head section of an html
page, inside the <style> tag, like this:
<head>
<style>
body {
background-color: linen;
}
h1 {
color: maroon;
margin-left: 40px;
}
</style>
</head>
INLINE STYLES
An inline style loses many of the advantages of a style sheet (by
mixing content with presentation). use this method sparingly!
To use inline styles, add the style attribute to the relevant tag. the
style attribute can contain any css property.
EXAMPLE:
<h1 style="color:blue;margin-left:30px;">this is aheading.</h1>
STYLING LINKS
Links can be styled with any css property (e.g. color, font-family,
background, etc.).
The four links states are:
A:LINK - A normal, unvisited link
A:VISITED - A link the user has visited
A:HOVER - A link when the user mouses over it
A:ACTIVE - A link the moment it is clicked
EXAMPLE:
/* UNVISITED LINK */
a:link {
color: #ff0000;
}
/* VISITED LINK */
a:visited {
color: #00ff00;
}
/* MOUSE OVER LINK */
a:hover {
color: #ff00ff;
}
/* SELECTED LINK */
a:active {
color: #0000ff;
}
LIST
In html, there are two types of lists:
 Unordered lists - the list items are marked with bullets
 Ordered lists - the list items are marked with numbers or letters
ul {
list-style-image: url('sqpurple.gif');
}
ul {
list-style-type: circle;
}
ol{
list-style-type: upper-roman;
}
TABLE BORDERS
To specify table borders in css, use the border property.
table,th,td
{
border : 1px solid black;
}
COLLAPSE BORDERS
The border-collapse property sets whether the table borders are
collapsed into a single border or separated:
table{border-collapse: collapse;}
table,th,td
{
border : 1px solid black;
}
TABLE WIDTH, HEIGHT, TEXT ALIGNMENT AND
PADDING
Width and height of a table is defined by the width and height properties.
table{
width: 100%;
}
th{
height: 50px;
}
td{
text-align: right;
padding: 15px;
}
THE CSS BOX MODEL
All html elements can be considered as boxes. in css, the term "box model"
is used when talking about design and layout.
The image below illustrates the box model:
Explanation of the different parts:
Content - The content of the box, where text and images appear
Padding - Clears an area around the content. The padding is transparent
Border - A border that goes around the padding and content
Margin - Clears an area outside the border. The margin is transparent
JAVA SCRIPT
Client-side programming with JavaScript
Scripts vs. programs
JavaScript vs. JScript vs. VBScript
Common tasks for client-side scripts
JavaScript
Data types & expressions
Control statements
Functions & libraries
Strings & arrays
Date, document, navigator, user-defined classes
CLIENT-SIDE PROGRAMMING
 Client-side programming
Programs are written in a separate programming (or scripting)
language
e.g., JavaScript, JScript, VBScript
Programs are embedded in the HTML of a Web page, with
(HTML) tags to identify the program component
e.g., <script type="text/javascript"> … </script>
The browser executes the program as it loads the page,
integrating the dynamic output of the program with the static
content of HTML
Could also allow the user (client) to input information and
process it, might be used to validate input before it’s submitted
to a remote server
JAVASCRIPT
Javascript code can be embedded in a web page using <script> tags
<html>
<!–- COMP519 js01.html 16.08.06 -->
<head>
<title>JavaScript Page</title>
</head>
<body>
<script type="text/javascript">
// silly code to demonstrate output
document.write("<p>Hello
world!</p>");
document.write(" <p>How are <br/> "
+
" <i>you</i>?</p> ");
</script>
<p>Here is some static text as
well.</p>
</body>
</html>
document.write displays text in
the page text to be displayed can
include HTML tags the tags are
interpreted by the browser when
the text is displayed as in
C++/Java, statements end with ;
but a line break might also be
interpreted as the end of a
statement (depends upon
browser).JavaScript comments
similar to C++/Java
// starts a single line comment
/*…*/ enclose multi-line
comments
JAVASCRIPT DATA TYPES & VARIABLES
Javascript has only three primitive data types
STRING : "FOO" 'HOW DO YOU DO?' "I SAID 'HI'." ""
NUMBER: 12 3.14159 1.5E6
BOOLEAN : TRUE FALSE *FIND INFO ON NULL, UNDEFINED
<html>
<!–- COMP519 js02.html 16.08.06 -->
<head>
<title>Data Types and Variables</title>
</head>
<body>
<script type="text/javascript">
var x, y;
x= 1024;
y=x; x = "foobar";
document.write("<p>x = " + y + "</p>");
document.write("<p>x = " + x + "</p>");
</script>
</body>
</html>
JAVASCRIPT OPERATORS & CONTROL
STATEMENTS
<html>
<!–- COMP519 js03.html 08.10.10 -->
<head>
<title>Folding Puzzle</title>
</head>
<body>
<script type="text/javascript">
var distanceToSun = 93.3e6*5280*12;
var thickness = .002;
var foldCount = 0;
while (thickness < distanceToSun) {
thickness *= 2;
foldCount++;
}
document.write("Number of folds = " +
foldCount);
</script>
</body>
</html>
standard C++/Java operators &
control statements are provided in
JavaScript
• +, -, *, /, %, ++, --, …
• ==, !=, <, >, <=, >=
• &&, ||, !,===,!==
• if , if-else, switch
• while, for, do-while, …
PUZZLE: Suppose you took a
piece of paper and folded it in
half, then in half again, and so on.
How many folds before the
thickness of the paper reaches
from the earth to the sun?
*Lots of information is available
online
JAVASCRIPT MATH ROUTINES
<html>
<!–- COMP519 js04.html 08.10.10 -->
<head>
<title>Random Dice Rolls</title>
</head>
<body>
<div style="text-align:center">
<script type="text/javascript">
var roll1 = Math.floor(Math.random()*6) + 1;
var roll2 = Math.floor(Math.random()*6) + 1;
document.write("<img src='http://www.csc.liv.ac.uk/"+
"~martin/teaching/comp519/Images/die" +
roll1 + ".gif‘ alt=‘dice showing ‘ + roll1 />");
document.write("&nbsp;&nbsp;");
document.write("<img src='http://www.csc.liv.ac.uk/"+
"~martin/teaching/comp519/Images/die" +
roll2 + ".gif‘ alt=‘dice showing ‘ + roll2 />");
</script>
</div>
</body>
</html>
The built-in Math
object contains
functions and
constants
Math.sqrt
Math.pow
Math.abs
Math.max
Math.min
Math.floor
Math.ceil
Math.round
Math.PI
Math.E
Math.random
function returns a
real number in [0..1)
INTERACTIVE PAGES USING PROMPT
<html>
<!-- COMP519 js05.html 08.10.10 -->
<head>
<title>Interactive page</title>
</head>
<body>
<script type="text/javascript">
var userName = prompt("What is your name?", "");
var userAge = prompt("Your age?", "");
var userAge = parseFloat(userAge);
document.write("Hello " + userName + ".")
if (userAge < 18) {
document.write(" Do your parents know " +
"you are online?");
}
else {
document.write(" Welcome friend!");
}
</script>
<p>The rest of the page...</p>
</body>
</html>
crude user interaction can
take place using prompt
1st argument: the prompt
message that appears in the
dialog box
2nd argument: a default
value that will appear in the
box (in case the user enters
nothing)the function returns
the value entered by the user
in the dialog box (a string)
if value is a number, must
use parseFloat (or parseInt)
to convert
forms will provide a better
interface for interaction
(later)
USER-DEFINED FUNCTIONS
 Function definitions are similar to c++/java, except:
 No return type for the function (since variables are loosely typed)
 No variable typing for parameters (since variables are loosely typed)
 By-value parameter passing only (parameter gets copy of argument)
function isPrime(n)
// Assumes: n > 0
// Returns: true if n is prime, else false
{
if (n < 2) {
return false;
}
else if (n == 2) {
return true;
}
else {
for (var i = 2; i <= Math.sqrt(n); i++) {
if (n % i == 0) {
return false;
}
}
return true;
}
}
Can limit variable scope
to the function.
if the first use of a
variable is preceded
with var, then that
variable is local to the
function
for modularity, should
make all variables in a
function local
STRING EXAMPLE: PALINDROMES
function strip(str)
// Assumes: str is a string
// Returns: str with all but letters removed
{
var copy = "";
for (var i = 0; i < str.length; i++) {
if ((str.charAt(i) >= "A" && str.charAt(i) <= "Z")
||
(str.charAt(i) >= "a" && str.charAt(i) <=
"z")) {
copy += str.charAt(i);
}
}
return copy;
}
function isPalindrome(str)
// Assumes: str is a string
// Returns: true if str is a palindrome, else false
{
str = strip(str.toUpperCase());
for(var i = 0; i < Math.floor(str.length/2); i++) {
if (str.charAt(i) != str.charAt(str.length-i-1)) {
return false;
}
}
return true;
}
suppose we want to
test whether a word or
phrase is a
palindrome
<html>
<!–- COMP519 js09.html 11.10.2011 -->
<head>
<title>Palindrome Checker</title>
<script type="text/javascript">
function strip(str)
{
// CODE AS SHOWN ON PREVIOUS SLIDE
}
function isPalindrome(str)
{
// CODE AS SHOWN ON PREVIOUS SLIDE
}
</script>
</head>
<body>
<script type="text/javascript">
text = prompt("Enter a word or phrase", "Madam, I'm Adam");
if (isPalindrome(text)) {
document.write("'" + text + "' <b>is</b> a palindrome.");
}
else {
document.write("'" + text + "' <b>is not</b> a palindrome.");
}
</script>
</body>
</html>
JAVASCRIPT ARRAYS
• Arrays store a sequence of items, accessible via an index
since javascript is loosely typed, elements do not have to be the same type
• To create an array, allocate space using new (or can assign directly)
• ITEMS = NEW ARRAY(10); // ALLOCATES SPACE FOR 10 ITEMS
• ITEMS = NEW ARRAY(); // IF NO SIZE GIVEN, WILL ADJUST DYNAMICALLY
• ITEMS = [0,0,0,0,0,0,0,0,0,0]; // CAN ASSIGN SIZE & VALUES []
• To access an array element, use [] (as in c++/java)
• FOR (I = 0; I < 10; I++) {
• ITEMS[I] = 0; // STORES 0 AT EACH INDEX
• }
• The length property stores the number of items in the array
• FOR (I = 0; I < ITEMS.LENGTH; I++) {
• DOCUMENT.WRITE(ITEMS[I] + "<BR>"); // DISPLAYS ELEMENTS
• }
ARRAY EXAMPLE
<html>
<!–- COMP519 js10.html 11.10.2011 -->
<head>
<title>Die Statistics</title>
<script type="text/javascript"
src="http://www.csc.liv.ac.uk/~martin/teaching/comp519/JS/ran
dom.js">
</script>
</head>
<body>
<script type="text/javascript">
numRolls = 60000;
dieSides = 6;
rolls = new Array(dieSides+1);
for (i = 1; i < rolls.length; i++) {
rolls[i] = 0;
}
for(i = 1; i <= numRolls; i++) {
rolls[randomInt(1, dieSides)]++;
}
for (i = 1; i < rolls.length; i++) {
document.write("Number of " + i + "'s = " +
rolls[i] + "<br />");
}
</script>
</body>
</html>
suppose we want to
simulate die rolls and
verify even distribution
keep an array of
counters:
initialize each count to
0
each time you roll X,
increment
rolls[X]
display each counter
DATE OBJECT
String & array are the most commonly used objects in javascript
Other, special purpose objects also exist
The date object can be used to access the date and time
To create a date object, use new & supply year/month/day/… as desired
Today = new date(); // sets to current date & time
Newyear = new date(2002,0,1); //sets to jan 1, 2002 12:00am
METHODS INCLUDE:
newyear.getyear()
newyear.getmonth()
newyear.getday()
newyear.gethours()
newyear.getminutes()
newyear.getseconds()
newyear.getmilliseconds()
DATE EXAMPLE
<html>
<!–- COMP519 js11.html 16.08.2006 -->
<head>
<title>Time page</title>
</head>
<body>
Time when page was loaded:
<script type="text/javascript">
now = new Date();
document.write("<p>" + now + "</p>");
time = "AM";
hours = now.getHours();
if (hours > 12) {
hours -= 12;
time = "PM"
}
else if (hours == 0) {
hours = 12;
}
document.write("<p>" + hours + ":" +
now.getMinutes() + ":" +
now.getSeconds() + " " +
time + "</p>");
</script>
</body>
</html>
by default, a date will be
displayed in full, e.g.,
Sun Feb 03 22:55:20
GMT-0600 (Central
Standard Time) 2002
can pull out portions of the
date using the methods and
display as desired
here, determine if "AM"
or "PM" and adjust so
hour between 1-12
10:55:20 PM
JavaScript and HTML validators
In order to use an HTML validator, and not get error messages
from the JavaScript portions, you must “mark” the JavaScipt sections
in a particular manner. Otherwise the validator will try to interpret
the script as HTML code.
To do this, you can use a markup like the following in your inline
code (this isn’t necessary for scripts stored in external files).
<script type=“text/javascript”> // <![CDATA[
document.write(“<p>The quick brown fox jumped over the lazy
dogs.</p>”); // **more code here, etc.
</script>
<!DOCTYPE html>
<html>
<head>
<script>
function validateForm() {
var x = document.forms["myForm"]["fname"].value;
if (x==null || x=="") {
alert("First name must be filled out");
return false;
}
}
</script>
</head>
<body>
<form name="myForm" action="demo_form.asp" onsubmit="return
validateForm()" method="post">
First name: <input type="text" name="fname">
<input type="submit" value="Submit">
</form>
</body>
</html>
Output
That’s All...

More Related Content

What's hot (20)

PPTX
Event In JavaScript
ShahDhruv21
 
ODP
Introduction of Html/css/js
Knoldus Inc.
 
ODP
Html
irshadahamed
 
PPTX
HTML Forms
Ravinder Kamboj
 
PPTX
Complete Lecture on Css presentation
Salman Memon
 
PPTX
html-table
Dhirendra Chauhan
 
PPSX
Javascript variables and datatypes
Varun C M
 
PPTX
html-css
Dhirendra Chauhan
 
PPTX
Javascript 101
Shlomi Komemi
 
PPTX
Html, CSS & Web Designing
Leslie Steele
 
PDF
Introduction to HTML5
Gil Fink
 
PDF
HTML CSS Basics
Mai Moustafa
 
PPT
HTML Tags
Pranay Agrawal
 
PPTX
Html form tag
shreyachougule
 
PDF
Bootstrap
Jadson Santos
 
PPTX
HTML
chinesebilli
 
PPTX
HTML (Web) basics for a beginner
Jayapal Reddy Nimmakayala
 
PPT
Html presentation
Amber Bhaumik
 
PPT
Hyperlinks in HTML
Aarti P
 
PPTX
Basic html structure
Jhaun Paul Enriquez
 
Event In JavaScript
ShahDhruv21
 
Introduction of Html/css/js
Knoldus Inc.
 
HTML Forms
Ravinder Kamboj
 
Complete Lecture on Css presentation
Salman Memon
 
html-table
Dhirendra Chauhan
 
Javascript variables and datatypes
Varun C M
 
Javascript 101
Shlomi Komemi
 
Html, CSS & Web Designing
Leslie Steele
 
Introduction to HTML5
Gil Fink
 
HTML CSS Basics
Mai Moustafa
 
HTML Tags
Pranay Agrawal
 
Html form tag
shreyachougule
 
Bootstrap
Jadson Santos
 
HTML (Web) basics for a beginner
Jayapal Reddy Nimmakayala
 
Html presentation
Amber Bhaumik
 
Hyperlinks in HTML
Aarti P
 
Basic html structure
Jhaun Paul Enriquez
 

Viewers also liked (20)

KEY
HTML CSS & Javascript
David Lindkvist
 
PPTX
HTML/CSS/java Script/Jquery
FAKHRUN NISHA
 
PPTX
Java script
Shyam Khant
 
PPTX
HTML, CSS and Java Scripts Basics
Sun Technlogies
 
PPT
Java script final presentation
Adhoura Academy
 
PPTX
Java script
Sadeek Mohammed
 
PPT
Introduction to Javascript
Amit Tyagi
 
PPT
Html Ppt
vijayanit
 
PPT
Html JavaScript and CSS
Radhe Krishna Rajan
 
PDF
JavaScript Programming
Sehwan Noh
 
PPTX
HTML5 Bootcamp: Essential HTML, CSS, & JavaScript
Todd Anglin
 
PPT
Java script
Soham Sengupta
 
PPT
A quick guide to Css and java script
AVINASH KUMAR
 
PPTX
Java script Session No 1
Saif Ullah Dar
 
PPTX
Java script
Jay Patel
 
PDF
Fundamental JavaScript [UTC, March 2014]
Aaron Gustafson
 
PDF
Introduction to JavaScript
Bryan Basham
 
PPT
Javascript
guest03a6e6
 
PPT
Php mysql ppt
Karmatechnologies Pvt. Ltd.
 
PPTX
Message Box in JS
paranormal2013
 
HTML CSS & Javascript
David Lindkvist
 
HTML/CSS/java Script/Jquery
FAKHRUN NISHA
 
Java script
Shyam Khant
 
HTML, CSS and Java Scripts Basics
Sun Technlogies
 
Java script final presentation
Adhoura Academy
 
Java script
Sadeek Mohammed
 
Introduction to Javascript
Amit Tyagi
 
Html Ppt
vijayanit
 
Html JavaScript and CSS
Radhe Krishna Rajan
 
JavaScript Programming
Sehwan Noh
 
HTML5 Bootcamp: Essential HTML, CSS, & JavaScript
Todd Anglin
 
Java script
Soham Sengupta
 
A quick guide to Css and java script
AVINASH KUMAR
 
Java script Session No 1
Saif Ullah Dar
 
Java script
Jay Patel
 
Fundamental JavaScript [UTC, March 2014]
Aaron Gustafson
 
Introduction to JavaScript
Bryan Basham
 
Javascript
guest03a6e6
 
Message Box in JS
paranormal2013
 
Ad

Similar to An Overview of HTML, CSS & Java Script (20)

PPTX
Workshop 2 Slides.pptx
DaniyalSardar
 
PPTX
Html starting
Rahul Dihora
 
PDF
Html & Html5 from scratch
Ahmad Al-ammar
 
PPT
HTML & CSS.ppt
vaseemshaik21
 
PPT
html and css- 23091 3154 458-5d4341a0.ppt
ahoveida
 
PPTX
Lab1_HTML.pptx
IslamGhonimi1
 
PPTX
Web development (html)
AliNaqvi131
 
DOCX
HTML
poonamBhalla5
 
PPTX
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
Deepak Upadhyay
 
PPSX
Html introduction
Dalia Elbadry
 
PPTX
Introduction to Web Techniques_Key componenets_HTML Basics
DeepakUlape2
 
PPTX
Learn html Basics
McSoftsis
 
PDF
Html tutorials by www.dmdiploma.com
ShwetaAggarwal56
 
PPT
xhtml_css.ppt
fakeaccount225095
 
PPTX
HTML and DHTML
Dr. SURBHI SAROHA
 
DOCX
Lesson A.1 - Introduction to Web Development.docx
MarlonMagtibay3
 
PPTX
learnhtmlbyvipuladissanayake-170516061515 (1).pptx
ManuAbraham17
 
PDF
HTML2.pdf
202GCET19
 
Workshop 2 Slides.pptx
DaniyalSardar
 
Html starting
Rahul Dihora
 
Html & Html5 from scratch
Ahmad Al-ammar
 
HTML & CSS.ppt
vaseemshaik21
 
html and css- 23091 3154 458-5d4341a0.ppt
ahoveida
 
Lab1_HTML.pptx
IslamGhonimi1
 
Web development (html)
AliNaqvi131
 
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
Deepak Upadhyay
 
Html introduction
Dalia Elbadry
 
Introduction to Web Techniques_Key componenets_HTML Basics
DeepakUlape2
 
Learn html Basics
McSoftsis
 
Html tutorials by www.dmdiploma.com
ShwetaAggarwal56
 
xhtml_css.ppt
fakeaccount225095
 
HTML and DHTML
Dr. SURBHI SAROHA
 
Lesson A.1 - Introduction to Web Development.docx
MarlonMagtibay3
 
learnhtmlbyvipuladissanayake-170516061515 (1).pptx
ManuAbraham17
 
HTML2.pdf
202GCET19
 
Ad

Recently uploaded (20)

PDF
How to Visualize the ​Spatio-Temporal Data Using CesiumJS​
SANGHEE SHIN
 
PPSX
Usergroup - OutSystems Architecture.ppsx
Kurt Vandevelde
 
PPTX
Curietech AI in action - Accelerate MuleSoft development
shyamraj55
 
DOCX
Daily Lesson Log MATATAG ICT TEchnology 8
LOIDAALMAZAN3
 
PDF
FME as an Orchestration Tool with Principles From Data Gravity
Safe Software
 
PDF
LLM Search Readiness Audit - Dentsu x SEO Square - June 2025.pdf
Nick Samuel
 
PDF
Python Conference Singapore - 19 Jun 2025
ninefyi
 
PDF
Redefining Work in the Age of AI - What to expect? How to prepare? Why it mat...
Malinda Kapuruge
 
PDF
Cracking the Code - Unveiling Synergies Between Open Source Security and AI.pdf
Priyanka Aash
 
PDF
Unlocking FME Flow’s Potential: Architecture Design for Modern Enterprises
Safe Software
 
PDF
Plugging AI into everything: Model Context Protocol Simplified.pdf
Abati Adewale
 
PDF
My Journey from CAD to BIM: A True Underdog Story
Safe Software
 
PDF
Enhancing Environmental Monitoring with Real-Time Data Integration: Leveragin...
Safe Software
 
PPTX
Enabling the Digital Artisan – keynote at ICOCI 2025
Alan Dix
 
PPTX
UserCon Belgium: Honey, VMware increased my bill
stijn40
 
PDF
Why aren't you using FME Flow's CPU Time?
Safe Software
 
PDF
From Chatbot to Destroyer of Endpoints - Can ChatGPT Automate EDR Bypasses (1...
Priyanka Aash
 
PDF
Salesforce Summer '25 Release Frenchgathering.pptx.pdf
yosra Saidani
 
PPTX
Practical Applications of AI in Local Government
OnBoard
 
PDF
Java 25 and Beyond - A Roadmap of Innovations
Ana-Maria Mihalceanu
 
How to Visualize the ​Spatio-Temporal Data Using CesiumJS​
SANGHEE SHIN
 
Usergroup - OutSystems Architecture.ppsx
Kurt Vandevelde
 
Curietech AI in action - Accelerate MuleSoft development
shyamraj55
 
Daily Lesson Log MATATAG ICT TEchnology 8
LOIDAALMAZAN3
 
FME as an Orchestration Tool with Principles From Data Gravity
Safe Software
 
LLM Search Readiness Audit - Dentsu x SEO Square - June 2025.pdf
Nick Samuel
 
Python Conference Singapore - 19 Jun 2025
ninefyi
 
Redefining Work in the Age of AI - What to expect? How to prepare? Why it mat...
Malinda Kapuruge
 
Cracking the Code - Unveiling Synergies Between Open Source Security and AI.pdf
Priyanka Aash
 
Unlocking FME Flow’s Potential: Architecture Design for Modern Enterprises
Safe Software
 
Plugging AI into everything: Model Context Protocol Simplified.pdf
Abati Adewale
 
My Journey from CAD to BIM: A True Underdog Story
Safe Software
 
Enhancing Environmental Monitoring with Real-Time Data Integration: Leveragin...
Safe Software
 
Enabling the Digital Artisan – keynote at ICOCI 2025
Alan Dix
 
UserCon Belgium: Honey, VMware increased my bill
stijn40
 
Why aren't you using FME Flow's CPU Time?
Safe Software
 
From Chatbot to Destroyer of Endpoints - Can ChatGPT Automate EDR Bypasses (1...
Priyanka Aash
 
Salesforce Summer '25 Release Frenchgathering.pptx.pdf
yosra Saidani
 
Practical Applications of AI in Local Government
OnBoard
 
Java 25 and Beyond - A Roadmap of Innovations
Ana-Maria Mihalceanu
 

An Overview of HTML, CSS & Java Script

  • 1. AN OVERVIEW OF HTML, CSS & JAVA SCRIPT
  • 3. WHAT IS HTML? HTML STANDS FOR HYPER TEXT MARKUP LANGUAGE HTML IS A MARKUP LANGUAGE A MARKUP LANGUAGE IS A SET OF MARKUP TAGS THE TAGS DESCRIBE DOCUMENT CONTENT HTML DOCUMENTS CONTAIN HTML TAGS AND PLAIN TEXT HTML DOCUMENTS ARE ALSO CALLED WEB PAGES
  • 4. HTML TAGS Html tags are keywords (tag names) surrounded by ANGLE BRACKETS like <html> Html tags normally come in pairs like <p> and </p> The first tag in a pair is the START TAG, the second tag is the END TAG The end tag is written like the start tag, with a SLASH before the tag name START and END tags are also called OPENING TAGS and CLOSING TAGS EXAMPLE: <tagname>content</tagname>
  • 5. HTML EXAMPLE <html> <body> <h1>my first heading</h1> <p>my first paragraph.</p> </body> </html> EXAMPLE EXPLAINED  The text between <html> and </html> DESCRIBES THE WEB PAGE  The text between <body> and </body> is the VISIBLE PAGE CONTENT  The text between <h1> and </h1> is DISPLAYED AS A HEADING  The text between <p> and </p> is DISPLAYED AS A PARAGRAPH
  • 6. HTML EDITORS Write html using notepad or textedit Html can be edited by using a professional html editor like: Adobe dreamweaver Microsoft expression web Coffeecup html editor However, for learning html we recommend a text editor like notepad (pc) or textedit (mac). When saving an html file, use either the .htm or the .html file extension. there is no difference, it is entirely up to you.
  • 7. HTML TAG Html headings are defined with the <h1> to <h6> tags <h1>this is a heading</h1> Html paragraphs are defined with the <p> tag. <p>this is a paragraph.</p> Html links are defined with the <a> tag. <a href="http://espesolutions.com">this is a link</a> Html images are defined with the <img> tag. <img src=“espelogo.jpg” alt=“espesolutions.com” width=“105” height=“105”> Html uses tags like <b> and <i> for formatting output, like bold or italic text. <b>this text is bold</b>,<i>this text is italic</i>
  • 8. HTMLATTRIBUTES Html elements can have ATTRIBUTES Attributes provide ADDITIONAL INFORMATION about an element Attributes are always specified in THE START TAG Attributes come in name/value pairs like: name="value“ <IMG SRC=“ESPELOGO.JPG” WIDTH=“105” HEIGHT=“105”> ↓ ↓ ↓ ↓ ↓ ↓ NAME VALUE NAME VALUE NAME VALUE
  • 9. HTML TABLES  Tables are defined with the <table> tag.  Tables are divided into table rows with the <tr> tag.  Table rows are divided into table data with the <td> tag.  A table row can also be divided into table headings with the <th> tag. Example <table> <tr> <th>name</th><th>qualification</th> </tr> <tr> <td>sandeep</td><td>cse</td> </tr> </table>
  • 10. HTML LIST HTML CAN HAVE UNORDERED LISTS &ORDERED LISTS UNORDERED HTML LIST  The first item  The second item  The third item  The fourth item ORDERED HTML LIST 1. The first item 2. The second item 3. The third item 4. The fourth item
  • 12. HTML FORMS Html forms are used to select different kinds of user input. Html forms are used to pass data to a server. An html form can contain input elements like text fields, checkboxes, radio-buttons, submit buttons and more. a form can also contain select lists, textarea, fieldset, legend, and label elements. SYNTAX: <form> input elements </form>
  • 13. INPUT ELEMENT The most important form element is the <input> element. The <input> element is used to select user information. An <input> element can vary in many ways, depending on the type attribute. An <input> element can be of type text field, checkbox, password, radio button, submit button, and more.
  • 14. TEXT FIELDS DEFINES ONE LINE INPUT FIELD WHERE USER CAN ENTER TEXT. EXAMPLE: <form> FIRST NAME: <input type="text“ name="firstname"><br> LAST NAME: <input type="text" name="lastname"> </form> OUTPUT: FIRST NAME: LAST NAME:
  • 15. PASSWORD FIELD  PASSWORD defines a password field. <input type=“password”>  the text entered in the textfield will view as *******. Syntax: password:<input type =“password” name=“ password”> OUTPUT: PASSWORD: *********
  • 16. RADIO BUTTONS Radio buttons let a user select only one of a limited number of choices. <input type="radio“> SYNTAX: <form> <input type="radio" name=“gender" value="male">male<br> <input type="radio" name=“gender" value="female">female </form> OUTPUT: Male Female
  • 17. CHECKBOXES Checkboxes let a user select zero or more options of a limited number of choices. <input type="checkbox“> SYNTAX: <form> <input type="checkbox" name="vehicle" value="bike">i have a bike<br> <input type="checkbox" name="vehicle" value="car">i have a car </form> OUTPUT: I HAVE A BIKE I HAVE A CAR
  • 18. SUBMIT A submit button is used to send form data to a server. The data is sent to the page specified in the form's action attribute. t The file defined in the action attribute usually does something with the received input. <input type="submit“> TYPE: SUBMIT. NAME: Value used by the cgi (common gateway interface)script for processing. VALUE: Determines the text label on the button, usually submit query. CGI: External program use standard input and output for data exchange.
  • 19. SUBMIT SYNTAX: <form name="input" action="demo" method="get"> username: <input type="text" name="user"> password:<input type=“password” name=“pass”> <input type="submit“ value=“submit” > </form> OUTPUT:
  • 20. RESET It allows the surfer to clear all the input in the form. For reset give <input type=“reset”> The browser display reset button.
  • 21. DROP-DOWN LIST Let a user select one or more choices from limited number of options. SYNTAX: <html> <body> <select> <option value=“fiat">fiat</option> <option value="audi">audi</option> </select> </body> </html>
  • 22. TEXTAREA The <textarea> tag defines a multi-line text input control. The size of a text area can be specified by the cols and rows attributes, or even better; through css' height and width properties. Syntax: <html> < body> <textarea rows="10" cols="30"> </textarea> </body> </html> output
  • 25. WHAT IS CSS? Css stands for cascading style sheets Styles define how to display html elements Styles were added to html 4.0 to solve a problem External style sheets can save a lot of work External style sheets are stored in css files CSS SYNTAX A CSS rule set consists of a selector and a declaration block:
  • 26. CSS EXAMPLE A css declaration always ends with a semicolon, and declaration groups are surrounded by curly braces: p { color: red; text-align: center; } CSS SELECTORS Css selectors are used to "find" (or select) html elements based on their id, classes, types, attributes, values of attributes and much more. element selector id selector class selector
  • 27. THE ELEMENT SELECTOR The element selector selects elements based on the element name. p { text-align: center; color: red; } THE ID SELECTOR The id selector uses the id attribute of an html tag to find the specific element. An id should be unique within a page, so you should use the id selector when you want to find a single, unique element.
  • 28. <p id=“para1”>hi</p> #para1 { text-align: center; color: red; } THE CLASS SELECTOR The class selector finds elements with the specific class. The class selector uses the html class attribute. Html elements with class="center" .center{ text-align : center; color: red; }
  • 29. THREE WAYS TO INSERT CSS There are three ways of inserting a style sheet: External style sheet Internal style sheet Inline style EXTERNAL STYLE SHEET An external style sheet is ideal when the style is applied to many pages. with an external style sheet, you can change the look of an entire web site by changing just one file. <head> <link rel="stylesheet" type="text/css“ href="mystyle.css"> </head>
  • 30. INTERNAL STYLE SHEET An internal style sheet should be used when a single document has a unique style. you define internal styles in the head section of an html page, inside the <style> tag, like this: <head> <style> body { background-color: linen; } h1 { color: maroon; margin-left: 40px; } </style> </head>
  • 31. INLINE STYLES An inline style loses many of the advantages of a style sheet (by mixing content with presentation). use this method sparingly! To use inline styles, add the style attribute to the relevant tag. the style attribute can contain any css property. EXAMPLE: <h1 style="color:blue;margin-left:30px;">this is aheading.</h1>
  • 32. STYLING LINKS Links can be styled with any css property (e.g. color, font-family, background, etc.). The four links states are: A:LINK - A normal, unvisited link A:VISITED - A link the user has visited A:HOVER - A link when the user mouses over it A:ACTIVE - A link the moment it is clicked
  • 33. EXAMPLE: /* UNVISITED LINK */ a:link { color: #ff0000; } /* VISITED LINK */ a:visited { color: #00ff00; } /* MOUSE OVER LINK */ a:hover { color: #ff00ff; } /* SELECTED LINK */ a:active { color: #0000ff; }
  • 34. LIST In html, there are two types of lists:  Unordered lists - the list items are marked with bullets  Ordered lists - the list items are marked with numbers or letters ul { list-style-image: url('sqpurple.gif'); } ul { list-style-type: circle; } ol{ list-style-type: upper-roman; }
  • 35. TABLE BORDERS To specify table borders in css, use the border property. table,th,td { border : 1px solid black; } COLLAPSE BORDERS The border-collapse property sets whether the table borders are collapsed into a single border or separated: table{border-collapse: collapse;} table,th,td { border : 1px solid black; }
  • 36. TABLE WIDTH, HEIGHT, TEXT ALIGNMENT AND PADDING Width and height of a table is defined by the width and height properties. table{ width: 100%; } th{ height: 50px; } td{ text-align: right; padding: 15px; }
  • 37. THE CSS BOX MODEL All html elements can be considered as boxes. in css, the term "box model" is used when talking about design and layout. The image below illustrates the box model: Explanation of the different parts: Content - The content of the box, where text and images appear Padding - Clears an area around the content. The padding is transparent Border - A border that goes around the padding and content Margin - Clears an area outside the border. The margin is transparent
  • 39. Client-side programming with JavaScript Scripts vs. programs JavaScript vs. JScript vs. VBScript Common tasks for client-side scripts JavaScript Data types & expressions Control statements Functions & libraries Strings & arrays Date, document, navigator, user-defined classes
  • 40. CLIENT-SIDE PROGRAMMING  Client-side programming Programs are written in a separate programming (or scripting) language e.g., JavaScript, JScript, VBScript Programs are embedded in the HTML of a Web page, with (HTML) tags to identify the program component e.g., <script type="text/javascript"> … </script> The browser executes the program as it loads the page, integrating the dynamic output of the program with the static content of HTML Could also allow the user (client) to input information and process it, might be used to validate input before it’s submitted to a remote server
  • 41. JAVASCRIPT Javascript code can be embedded in a web page using <script> tags <html> <!–- COMP519 js01.html 16.08.06 --> <head> <title>JavaScript Page</title> </head> <body> <script type="text/javascript"> // silly code to demonstrate output document.write("<p>Hello world!</p>"); document.write(" <p>How are <br/> " + " <i>you</i>?</p> "); </script> <p>Here is some static text as well.</p> </body> </html> document.write displays text in the page text to be displayed can include HTML tags the tags are interpreted by the browser when the text is displayed as in C++/Java, statements end with ; but a line break might also be interpreted as the end of a statement (depends upon browser).JavaScript comments similar to C++/Java // starts a single line comment /*…*/ enclose multi-line comments
  • 42. JAVASCRIPT DATA TYPES & VARIABLES Javascript has only three primitive data types STRING : "FOO" 'HOW DO YOU DO?' "I SAID 'HI'." "" NUMBER: 12 3.14159 1.5E6 BOOLEAN : TRUE FALSE *FIND INFO ON NULL, UNDEFINED <html> <!–- COMP519 js02.html 16.08.06 --> <head> <title>Data Types and Variables</title> </head> <body> <script type="text/javascript"> var x, y; x= 1024; y=x; x = "foobar"; document.write("<p>x = " + y + "</p>"); document.write("<p>x = " + x + "</p>"); </script> </body> </html>
  • 43. JAVASCRIPT OPERATORS & CONTROL STATEMENTS <html> <!–- COMP519 js03.html 08.10.10 --> <head> <title>Folding Puzzle</title> </head> <body> <script type="text/javascript"> var distanceToSun = 93.3e6*5280*12; var thickness = .002; var foldCount = 0; while (thickness < distanceToSun) { thickness *= 2; foldCount++; } document.write("Number of folds = " + foldCount); </script> </body> </html> standard C++/Java operators & control statements are provided in JavaScript • +, -, *, /, %, ++, --, … • ==, !=, <, >, <=, >= • &&, ||, !,===,!== • if , if-else, switch • while, for, do-while, … PUZZLE: Suppose you took a piece of paper and folded it in half, then in half again, and so on. How many folds before the thickness of the paper reaches from the earth to the sun? *Lots of information is available online
  • 44. JAVASCRIPT MATH ROUTINES <html> <!–- COMP519 js04.html 08.10.10 --> <head> <title>Random Dice Rolls</title> </head> <body> <div style="text-align:center"> <script type="text/javascript"> var roll1 = Math.floor(Math.random()*6) + 1; var roll2 = Math.floor(Math.random()*6) + 1; document.write("<img src='http://www.csc.liv.ac.uk/"+ "~martin/teaching/comp519/Images/die" + roll1 + ".gif‘ alt=‘dice showing ‘ + roll1 />"); document.write("&nbsp;&nbsp;"); document.write("<img src='http://www.csc.liv.ac.uk/"+ "~martin/teaching/comp519/Images/die" + roll2 + ".gif‘ alt=‘dice showing ‘ + roll2 />"); </script> </div> </body> </html> The built-in Math object contains functions and constants Math.sqrt Math.pow Math.abs Math.max Math.min Math.floor Math.ceil Math.round Math.PI Math.E Math.random function returns a real number in [0..1)
  • 45. INTERACTIVE PAGES USING PROMPT <html> <!-- COMP519 js05.html 08.10.10 --> <head> <title>Interactive page</title> </head> <body> <script type="text/javascript"> var userName = prompt("What is your name?", ""); var userAge = prompt("Your age?", ""); var userAge = parseFloat(userAge); document.write("Hello " + userName + ".") if (userAge < 18) { document.write(" Do your parents know " + "you are online?"); } else { document.write(" Welcome friend!"); } </script> <p>The rest of the page...</p> </body> </html> crude user interaction can take place using prompt 1st argument: the prompt message that appears in the dialog box 2nd argument: a default value that will appear in the box (in case the user enters nothing)the function returns the value entered by the user in the dialog box (a string) if value is a number, must use parseFloat (or parseInt) to convert forms will provide a better interface for interaction (later)
  • 46. USER-DEFINED FUNCTIONS  Function definitions are similar to c++/java, except:  No return type for the function (since variables are loosely typed)  No variable typing for parameters (since variables are loosely typed)  By-value parameter passing only (parameter gets copy of argument) function isPrime(n) // Assumes: n > 0 // Returns: true if n is prime, else false { if (n < 2) { return false; } else if (n == 2) { return true; } else { for (var i = 2; i <= Math.sqrt(n); i++) { if (n % i == 0) { return false; } } return true; } } Can limit variable scope to the function. if the first use of a variable is preceded with var, then that variable is local to the function for modularity, should make all variables in a function local
  • 47. STRING EXAMPLE: PALINDROMES function strip(str) // Assumes: str is a string // Returns: str with all but letters removed { var copy = ""; for (var i = 0; i < str.length; i++) { if ((str.charAt(i) >= "A" && str.charAt(i) <= "Z") || (str.charAt(i) >= "a" && str.charAt(i) <= "z")) { copy += str.charAt(i); } } return copy; } function isPalindrome(str) // Assumes: str is a string // Returns: true if str is a palindrome, else false { str = strip(str.toUpperCase()); for(var i = 0; i < Math.floor(str.length/2); i++) { if (str.charAt(i) != str.charAt(str.length-i-1)) { return false; } } return true; } suppose we want to test whether a word or phrase is a palindrome
  • 48. <html> <!–- COMP519 js09.html 11.10.2011 --> <head> <title>Palindrome Checker</title> <script type="text/javascript"> function strip(str) { // CODE AS SHOWN ON PREVIOUS SLIDE } function isPalindrome(str) { // CODE AS SHOWN ON PREVIOUS SLIDE } </script> </head> <body> <script type="text/javascript"> text = prompt("Enter a word or phrase", "Madam, I'm Adam"); if (isPalindrome(text)) { document.write("'" + text + "' <b>is</b> a palindrome."); } else { document.write("'" + text + "' <b>is not</b> a palindrome."); } </script> </body> </html>
  • 49. JAVASCRIPT ARRAYS • Arrays store a sequence of items, accessible via an index since javascript is loosely typed, elements do not have to be the same type • To create an array, allocate space using new (or can assign directly) • ITEMS = NEW ARRAY(10); // ALLOCATES SPACE FOR 10 ITEMS • ITEMS = NEW ARRAY(); // IF NO SIZE GIVEN, WILL ADJUST DYNAMICALLY • ITEMS = [0,0,0,0,0,0,0,0,0,0]; // CAN ASSIGN SIZE & VALUES [] • To access an array element, use [] (as in c++/java) • FOR (I = 0; I < 10; I++) { • ITEMS[I] = 0; // STORES 0 AT EACH INDEX • } • The length property stores the number of items in the array • FOR (I = 0; I < ITEMS.LENGTH; I++) { • DOCUMENT.WRITE(ITEMS[I] + "<BR>"); // DISPLAYS ELEMENTS • }
  • 50. ARRAY EXAMPLE <html> <!–- COMP519 js10.html 11.10.2011 --> <head> <title>Die Statistics</title> <script type="text/javascript" src="http://www.csc.liv.ac.uk/~martin/teaching/comp519/JS/ran dom.js"> </script> </head> <body> <script type="text/javascript"> numRolls = 60000; dieSides = 6; rolls = new Array(dieSides+1); for (i = 1; i < rolls.length; i++) { rolls[i] = 0; } for(i = 1; i <= numRolls; i++) { rolls[randomInt(1, dieSides)]++; } for (i = 1; i < rolls.length; i++) { document.write("Number of " + i + "'s = " + rolls[i] + "<br />"); } </script> </body> </html> suppose we want to simulate die rolls and verify even distribution keep an array of counters: initialize each count to 0 each time you roll X, increment rolls[X] display each counter
  • 51. DATE OBJECT String & array are the most commonly used objects in javascript Other, special purpose objects also exist The date object can be used to access the date and time To create a date object, use new & supply year/month/day/… as desired Today = new date(); // sets to current date & time Newyear = new date(2002,0,1); //sets to jan 1, 2002 12:00am METHODS INCLUDE: newyear.getyear() newyear.getmonth() newyear.getday() newyear.gethours() newyear.getminutes() newyear.getseconds() newyear.getmilliseconds()
  • 52. DATE EXAMPLE <html> <!–- COMP519 js11.html 16.08.2006 --> <head> <title>Time page</title> </head> <body> Time when page was loaded: <script type="text/javascript"> now = new Date(); document.write("<p>" + now + "</p>"); time = "AM"; hours = now.getHours(); if (hours > 12) { hours -= 12; time = "PM" } else if (hours == 0) { hours = 12; } document.write("<p>" + hours + ":" + now.getMinutes() + ":" + now.getSeconds() + " " + time + "</p>"); </script> </body> </html> by default, a date will be displayed in full, e.g., Sun Feb 03 22:55:20 GMT-0600 (Central Standard Time) 2002 can pull out portions of the date using the methods and display as desired here, determine if "AM" or "PM" and adjust so hour between 1-12 10:55:20 PM
  • 53. JavaScript and HTML validators In order to use an HTML validator, and not get error messages from the JavaScript portions, you must “mark” the JavaScipt sections in a particular manner. Otherwise the validator will try to interpret the script as HTML code. To do this, you can use a markup like the following in your inline code (this isn’t necessary for scripts stored in external files). <script type=“text/javascript”> // <![CDATA[ document.write(“<p>The quick brown fox jumped over the lazy dogs.</p>”); // **more code here, etc. </script>
  • 54. <!DOCTYPE html> <html> <head> <script> function validateForm() { var x = document.forms["myForm"]["fname"].value; if (x==null || x=="") { alert("First name must be filled out"); return false; } } </script> </head> <body> <form name="myForm" action="demo_form.asp" onsubmit="return validateForm()" method="post"> First name: <input type="text" name="fname"> <input type="submit" value="Submit"> </form> </body> </html>