SlideShare a Scribd company logo
Introduction of HTML/CSS/JS


            Ruchi Agarwal
          Software Consultant
           Knoldus Software
What is HTML?


●   HTML is a language for describing web pages.
●   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 markup tags are usually called HTML tags
●   HTML tags are keywords (tag names) surrounded by angle brackets like <html>
●   HTML tags normally come in pairs like <b> and </b>
●   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 forward slash before the tag name
●   Start and end tags are also called opening tags and closing tags


              <tagname>content</tagname>
Basic HTML page structure
Example
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
●   A CSS (cascading style sheet) file allows to separate web sites HTML content from it’s
    style.
How to use CSS?
There are three ways of inserting a style sheet:
External Style Sheet:
    An external style sheet is ideal when the style is applied to many pages.
    <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.
    <head>
    <style>
         p {margin-left:20px;}
         body {background-image:url("images/back40.gif");}
    </style>
    </head>
Inline Styles:
    To use inline styles use the style attribute in the relevant tag. The style attribute can
contain any CSS property.


         <p style="color:#fafafa;margin-left:20px">This is a paragraph.</p>


Multiple Styles Will Cascade into One:
Cascading order


         ●   Inline style (inside an HTML element)
         ●   Internal style sheet (in the head section)
         ●   External style sheet
         ●   Browser default
CSS Syntax


       A CSS rule has two main parts: a selector, and one or more declarations:




Combining Selectors


        h1, h2, h3, h4, h5, h6 {
              color: #009900;
              font-family: Georgia, sans-serif;
        }
The id Selector
    The id selector is used to specify a style for a single, unique element.
    The id selector uses the id attribute of the HTML element, and is defined with a "#".


    Syntax
             #selector-id      {   property : value ; }




The class Selector
    The class selector is used to specify a style for a group of elements.
    The class selector uses the HTML class attribute, and is defined with a "."


    Syntax
             .selector-class       {    property : value ;   }
CSS Anchors, Links and Pseudo Classes:


   Below are the various ways you can use CSS to style links.


       a:link {color: #009900;}
       a:visited {color: #999999;}
       a:hover {color: #333333;}
       a:focus {color: #333333;}
       a:active {color: #009900;}
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 CSS box model is essentially a box that wraps around HTML elements, and it consists of:
        margins, borders, padding, and the actual content.


●   The box model allows to place a border around elements and space elements in relation to
    other elements.
Example


     #signup-form {                          #signup-form .fieldgroup input, #signup-form
       background-color: #F8FDEF;            .fieldgroup textarea, #signup-form
       border: 1px solid #DFDCDC;            .fieldgroup select {
       border-radius: 15px 15px 15px 15px;       float: right;
       display: inline-block;                    margin: 10px 0;
       margin-bottom: 30px;                      height: 25px;
       margin-left: 20px;                    }
       margin-top: 10px;
       padding: 25px 50px 10px;              #signup-form .submit {
       width: 350px;                           padding: 10px;
     }                                         width: 220px;
                                               height: 40px !important;
     #signup-form .fieldgroup {              }
       display: inline-block;
       padding: 8px 10px;                    #signup-form .fieldgroup label.error {
       width: 340px;                           color: #FB3A3A;
     }                                         display: inline-block;
                                               margin: 4px 0 5px 125px;
     #signup-form .fieldgroup label {          padding: 0;
       float: left;                            text-align: left;
       padding: 15px 0 0;                      width: 220px;
       text-align: right;                    }
       width: 110px;
     }
What is JavaScript

●   JavaScript is a Scripting Language
●   A scripting language is a lightweight programming language.
●   JavaScript is programming code that can be inserted into HTML pages.
●   JavaScript inserted into HTML pages, can be executed by all modern web browsers.
How to use JavaScript?

The <script> Tag
To insert a JavaScript into an HTML page, use the <script> tag.
The <script> and </script> tells where the JavaScript starts and ends.
    <script>
         alert("My First JavaScript");
    </script>


JavaScript in <body>
    <html>
    <body>
    <script>
         document.write("<h1>This is a heading</h1>");
    </script>
    </body>
    </html>
External JavaScripts
Scripts can also be placed in external files. External files often contain code to be used by
several different web pages.
External JavaScript files have the file extension .js.
To use an external script, point to the .js file in the "src" attribute of the <script> tag:


         <html>
         <body>
              <script src="myScript.js"></script>
         </body>
         </html>
The HTML DOM (Document Object Model)


    When a web page is loaded, the browser creates a Document Object Model of the page.
The HTML DOM model is constructed as a tree of Objects:
Finding HTML Elements by Id


       document.getElementById("<id-name>");


Finding HTML Elements by Tag Name


       document.getElementsByTagName("<tag>");


Finding HTML Elements by Name


       document.getElementsByName(“<name-attr>”)


Finding HTML Elements by Class


       document.getElementByClass(“<class-name>”)
Writing Into HTML Output


    document.write("<h1>This is a heading</h1>");
    document.write("<p>This is a paragraph</p>");


Reacting to Events


    <button type="button" onclick="alert('Welcome!')">Click Me!</button>


Changing HTML Content
Using JavaScript to manipulate the content of HTML elements is a very powerful functionality.


    x=document.getElementById("demo")            //Find the element
    x.innerHTML="Hello JavaScript";              //Change the content
Changing HTML Styles
Changing the style of an HTML element, is a variant of changing an HTML attribute.


        x=document.getElementById("demo")           //Find the element
        x.style.color="#ff0000";                    //Change the style


Validate Input
JavaScript is commonly used to validate input.


        if isNaN(x) {alert("Not Numeric")};
Example

          function validateForm()
          {
               var nameValue=document.getElementById('name');
               verifyName(nameValue);
               var emailValue=document.getElementById('email');
               verifyEmail(emailValue);
               var password=document.getElementById('password');
               verifyPassword(password,8,12);
          }

          function verifyName(uname)
          {

              var letters = /^[A-Za-z]+$/;
              if(uname.value.match(letters))
              {
                    return true;
              }
              else
              {
                    alert('Invalid name');
                    return false;
              }
          }
What is jQuery?


 ●   jQuery is a lightweight, "write less, do more", JavaScript library.
 ●   The purpose of jQuery is to make it much easier to use JavaScript on your website.
 ●   jQuery takes a lot of common tasks that requires many lines of JavaScript code to
     accomplish, and wraps it into methods that you can call with a single line of code.
 ●   jQuery also simplifies a lot of the complicated things from JavaScript, like AJAX calls and
     DOM manipulation.


Features:
 ●   HTML/DOM manipulation
 ●   CSS manipulation
 ●   HTML event methods
 ●   Effects and animations
 ●   AJAX
jQuery Syntax
Basic syntax:
                   $(selector).action()


 ●   A $ sign to define/access jQuery
 ●   A (selector) to "query (or find)" HTML elements
 ●   A jQuery action() to be performed on the element(s)


Example:
                  $("p").hide() - hides all <p> elements.
How to use Jquery:
     <head>
         <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
     </head>
jQuery Selectors:
    jQuery selectors allow you to select and manipulate HTML element(s).


The element , id and class Selector
    The jQuery element selector selects elements based on their tag names.
                         $("<tag-name>")             //element selector
                         $("#<id-name>")             // id selector
                         $(".<class-name>")          // class selector
Example
          $(document).ready(function(){
                $("button").click(function(){
                      $("p").hide();
                      $("#test").hide();        //#id selector
                      $(".test").hide();        //.class selector
                });
          });
Example
jQuery Event


All the different visitors actions that a web page can respond to are called events.
An event represents the precise moment when something happens.


    Mouse Events Keyboard Events             Form Events    Document/Window Events

       click              keypress              submit                 load
       dblclick           keydown               change                resize
     mouseenter           keyup                  focus                scroll

     mouseleave                                   blur                unload




Example:          $("p").click(function(){
                        // action goes here!!
                  });
JQuery Effects:


JQuery hide(), show() and toggle() method


        $(selector).hide(speed,callback);
        $(selector).show(speed,callback);
        $(selector).toggle(speed,callback);


jQuery fadeIn() , fadeOut() ,fadeToggle() and fadeTo() method


        $(selector).fadeIn(speed,callback);
        $(selector).fadeOut(speed,callback);
        $(selector).fadeToggle(speed,callback);
        $(selector).fadeTo(speed,callback);
jQuery Sliding Methods


        $(selector).slideDown(speed,callback);
        $(selector).slideUp(speed,callback);
        $(selector).slideToggle(speed,callback);


jQuery Animations - The animate() Method


        $(selector).animate({params},speed,callback);


jQuery stop() Method


        $(selector).stop(stopAll,goToEnd);
jQuery Method Chaining


            $(selector).css("color","red").slideUp(2000).slideDown(2000);




jQuery - Get Content and Attributes


            $(selector).click(function(){
                  alert("Text: " + $(selector).text());
                  alert("HTML: " + $(selector).html());
                  alert("Value: " + $(input-selector).val());
                  alert($(link-selector).attr("href"));
            });
jQuery - Set Content and Attributes


        $(selector).click(function(){
                   $(selector).text("Hello world!");
                   $(selector).html("<b>Hello world!</b>");
                   $(input-selector).val("Dolly Duck");
                   $(link-selector).attr("href","http://www.google.com”);
        });


jQuery - Add Elements


        $(selector).append("Some appended text.");
        $(selector).prepend("Some prepended text.");
jQuery - Remove Elements
                  $("#<id-name>").remove();



jQuery Manipulating CSS
  addClass() - Adds one or more classes to the selected elements
              $("<tag-name>").addClass("<class-name>");


  removeClass() - Removes one or more classes from the selected elements
             $("<tag-name>").removeClass("<class-name>");



  toggleClass() - Toggles between adding/removing classes from the selected elements
              $("<tag-name>").toggleClass("<class-name>");


  css() - Sets or returns the style attribute
             $("<tag-name>").css("background-color","yellow");
jQuery Dimension Methods
jQuery - AJAX


    AJAX = Asynchronous JavaScript and XML.
    In short; AJAX is about loading data in the background and display it on the webpage,
    without reloading the whole page.


jQuery load() Method
     ●    The jQuery load() method is a simple, but powerful AJAX method.
     ●    The load() method loads data from a server and puts the returned data into the
          selected element.


Syntax:
              $(selector).load(URL,data,callback);
Example

   ajax load()

          $("#success").load("htmlForm.html", function(response, status, xhr) {
                              if (status == "error") {
                                     var msg = "Sorry but there was an error: ";
                                     $("#error").html(msg + xhr.status + " " + xhr.statusText);
                              }
                         });



   $.ajax()
              $.ajax({
                         url: filename,
                          type: 'GET',
                          dataType: 'html',
                          beforeSend: function() {
                             $('.contentarea').html('<img src="images/loading.gif" />');
                          },
                          success: function(data, textStatus, xhr) {
                             $('.contentarea').html(data);
                          },
                          error: function(xhr, textStatus, errorThrown) {
                             $('.contentarea').html(textStatus);
                          }
                   });
jQuery - AJAX get() and post() Methods


    Two commonly used methods for a request-response between a client and server are:
    GET and POST.


    GET is basically used for just getting (retrieving) some data from the server.
    The GET method may return cached data.


    POST can also be used to get some data from the server. However, the POST
    method NEVER caches data, and is often used to send data along with the request.


Syntax:
             $.get(URL,callback);
             $.post(URL,data,callback);
Introduction of Html/css/js

More Related Content

What's hot (20)

Event In JavaScript
Event In JavaScriptEvent In JavaScript
Event In JavaScript
ShahDhruv21
 
CSS
CSSCSS
CSS
People Strategists
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
Shawn Calvert
 
Css3
Css3Css3
Css3
Deepak Mangal
 
HTML Forms
HTML FormsHTML Forms
HTML Forms
Ravinder Kamboj
 
Php Lecture Notes
Php Lecture NotesPhp Lecture Notes
Php Lecture Notes
Santhiya Grace
 
Cascading Style Sheet (CSS)
Cascading Style Sheet (CSS)Cascading Style Sheet (CSS)
Cascading Style Sheet (CSS)
AakankshaR
 
Dom
DomDom
Dom
Rakshita Upadhyay
 
jQuery for beginners
jQuery for beginnersjQuery for beginners
jQuery for beginners
Arulmurugan Rajaraman
 
Css selectors
Css selectorsCss selectors
Css selectors
Parth Trivedi
 
Introduction to php
Introduction to phpIntroduction to php
Introduction to php
Taha Malampatti
 
Ppt of web development
Ppt of web developmentPpt of web development
Ppt of web development
bethanygfair
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
Eliran Eliassy
 
Html Ppt
Html PptHtml Ppt
Html Ppt
vijayanit
 
Java script
Java scriptJava script
Java script
Abhishek Kesharwani
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
Amit Tyagi
 
Introduction to Web Architecture
Introduction to Web ArchitectureIntroduction to Web Architecture
Introduction to Web Architecture
Chamnap Chhorn
 
Web Design & Development - Session 1
Web Design & Development - Session 1Web Design & Development - Session 1
Web Design & Development - Session 1
Shahrzad Peyman
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
WordPress Memphis
 
WEB I - 01 - Introduction to Web Development
WEB I - 01 - Introduction to Web DevelopmentWEB I - 01 - Introduction to Web Development
WEB I - 01 - Introduction to Web Development
Randy Connolly
 

Viewers also liked (20)

HTML CSS & Javascript
HTML CSS & JavascriptHTML CSS & Javascript
HTML CSS & Javascript
David Lindkvist
 
Html JavaScript and CSS
Html JavaScript and CSSHtml JavaScript and CSS
Html JavaScript and CSS
Radhe Krishna Rajan
 
HTML5 Bootcamp: Essential HTML, CSS, & JavaScript
HTML5 Bootcamp: Essential HTML, CSS, & JavaScriptHTML5 Bootcamp: Essential HTML, CSS, & JavaScript
HTML5 Bootcamp: Essential HTML, CSS, & JavaScript
Todd Anglin
 
HTML CSS JavaScript jQuery Training
HTML CSS JavaScript jQuery TrainingHTML CSS JavaScript jQuery Training
HTML CSS JavaScript jQuery Training
ubshreenath
 
An Seo’s Intro to Web Dev, HTML, CSS and JavaScript
An Seo’s Intro to Web Dev, HTML, CSS and JavaScriptAn Seo’s Intro to Web Dev, HTML, CSS and JavaScript
An Seo’s Intro to Web Dev, HTML, CSS and JavaScript
Troyfawkes
 
Lotus - normas gráficas
Lotus - normas gráficasLotus - normas gráficas
Lotus - normas gráficas
TT TY
 
An Intro to HTML5 and CSS3
An Intro to HTML5 and CSS3An Intro to HTML5 and CSS3
An Intro to HTML5 and CSS3
Dhruva Krishnan
 
Create Your Tester Portfolio
Create Your Tester PortfolioCreate Your Tester Portfolio
Create Your Tester Portfolio
Shmuel Gershon
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
Dhruva Krishnan
 
Intro to HTML5
Intro to HTML5Intro to HTML5
Intro to HTML5
Jussi Pohjolainen
 
Php
PhpPhp
Php
anandha ganesh
 
PHP in one presentation
PHP in one presentationPHP in one presentation
PHP in one presentation
Milad Rahimi
 
Threads in PHP - Presentation
Threads in PHP - Presentation Threads in PHP - Presentation
Threads in PHP - Presentation
appserver.io
 
PHP
PHPPHP
PHP
Jawhar Ali
 
Core Php Component Presentation
Core Php Component PresentationCore Php Component Presentation
Core Php Component Presentation
John Coonen
 
Php oop presentation
Php   oop presentationPhp   oop presentation
Php oop presentation
Mutinda Boniface
 
PHP presentation - Com 585
PHP presentation - Com 585PHP presentation - Com 585
PHP presentation - Com 585
jstout007
 
Devise | Presentation for Alpharetta PHP / Laravel Group
Devise | Presentation for Alpharetta PHP / Laravel GroupDevise | Presentation for Alpharetta PHP / Laravel Group
Devise | Presentation for Alpharetta PHP / Laravel Group
Gary Williams
 
PHP presentation
PHP presentationPHP presentation
PHP presentation
Helen Pitlick
 
Презентация на тему "WEB-программирование"
Презентация на тему "WEB-программирование"Презентация на тему "WEB-программирование"
Презентация на тему "WEB-программирование"
Gotti Vartanyan
 
HTML5 Bootcamp: Essential HTML, CSS, & JavaScript
HTML5 Bootcamp: Essential HTML, CSS, & JavaScriptHTML5 Bootcamp: Essential HTML, CSS, & JavaScript
HTML5 Bootcamp: Essential HTML, CSS, & JavaScript
Todd Anglin
 
HTML CSS JavaScript jQuery Training
HTML CSS JavaScript jQuery TrainingHTML CSS JavaScript jQuery Training
HTML CSS JavaScript jQuery Training
ubshreenath
 
An Seo’s Intro to Web Dev, HTML, CSS and JavaScript
An Seo’s Intro to Web Dev, HTML, CSS and JavaScriptAn Seo’s Intro to Web Dev, HTML, CSS and JavaScript
An Seo’s Intro to Web Dev, HTML, CSS and JavaScript
Troyfawkes
 
Lotus - normas gráficas
Lotus - normas gráficasLotus - normas gráficas
Lotus - normas gráficas
TT TY
 
An Intro to HTML5 and CSS3
An Intro to HTML5 and CSS3An Intro to HTML5 and CSS3
An Intro to HTML5 and CSS3
Dhruva Krishnan
 
Create Your Tester Portfolio
Create Your Tester PortfolioCreate Your Tester Portfolio
Create Your Tester Portfolio
Shmuel Gershon
 
PHP in one presentation
PHP in one presentationPHP in one presentation
PHP in one presentation
Milad Rahimi
 
Threads in PHP - Presentation
Threads in PHP - Presentation Threads in PHP - Presentation
Threads in PHP - Presentation
appserver.io
 
Core Php Component Presentation
Core Php Component PresentationCore Php Component Presentation
Core Php Component Presentation
John Coonen
 
PHP presentation - Com 585
PHP presentation - Com 585PHP presentation - Com 585
PHP presentation - Com 585
jstout007
 
Devise | Presentation for Alpharetta PHP / Laravel Group
Devise | Presentation for Alpharetta PHP / Laravel GroupDevise | Presentation for Alpharetta PHP / Laravel Group
Devise | Presentation for Alpharetta PHP / Laravel Group
Gary Williams
 
Презентация на тему "WEB-программирование"
Презентация на тему "WEB-программирование"Презентация на тему "WEB-программирование"
Презентация на тему "WEB-программирование"
Gotti Vartanyan
 

Similar to Introduction of Html/css/js (20)

Presentation on htmlcssjs-130221085257-phpapp02.pdf
Presentation on  htmlcssjs-130221085257-phpapp02.pdfPresentation on  htmlcssjs-130221085257-phpapp02.pdf
Presentation on htmlcssjs-130221085257-phpapp02.pdf
MeetRajani2
 
Html, css and jquery introduction
Html, css and jquery introductionHtml, css and jquery introduction
Html, css and jquery introduction
cncwebworld
 
Overview of PHP and MYSQL
Overview of PHP and MYSQLOverview of PHP and MYSQL
Overview of PHP and MYSQL
Deblina Chowdhury
 
Introduction to HTML+CSS+Javascript by Deepu.pptx
Introduction to HTML+CSS+Javascript by Deepu.pptxIntroduction to HTML+CSS+Javascript by Deepu.pptx
Introduction to HTML+CSS+Javascript by Deepu.pptx
deepuranjankumar08
 
Chapter 4a cascade style sheet css
Chapter 4a cascade style sheet cssChapter 4a cascade style sheet css
Chapter 4a cascade style sheet css
Tesfaye Yenealem
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptx
KADAMBARIPUROHIT
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptx
AliRaza899305
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptx
deepuranjankumar2002
 
Html advance
Html advanceHtml advance
Html advance
PumoTechnovation
 
HTML-Advance.pptx
HTML-Advance.pptxHTML-Advance.pptx
HTML-Advance.pptx
Pandiya Rajan
 
Html, CSS, Javascript, Jquery, Meteor應用
Html, CSS, Javascript, Jquery, Meteor應用Html, CSS, Javascript, Jquery, Meteor應用
Html, CSS, Javascript, Jquery, Meteor應用
LearningTech
 
gdg Introduction to HTML-CSS-Javascript.pptx
gdg Introduction to HTML-CSS-Javascript.pptxgdg Introduction to HTML-CSS-Javascript.pptx
gdg Introduction to HTML-CSS-Javascript.pptx
saurabh45tiwari
 
Introduction to HTML-CSS-Javascript.pptx
Introduction to HTML-CSS-Javascript.pptxIntroduction to HTML-CSS-Javascript.pptx
Introduction to HTML-CSS-Javascript.pptx
deepak37877
 
wd project.pptx
wd project.pptxwd project.pptx
wd project.pptx
dsffsdf1
 
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
brianbyamukama302
 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptx
Alisha Kamat
 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptx
GDSCVJTI
 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptx
Alisha Kamat
 
HTML_CSS_JS Workshop
HTML_CSS_JS WorkshopHTML_CSS_JS Workshop
HTML_CSS_JS Workshop
GDSC UofT Mississauga
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptx
SadiaBaig6
 
Presentation on htmlcssjs-130221085257-phpapp02.pdf
Presentation on  htmlcssjs-130221085257-phpapp02.pdfPresentation on  htmlcssjs-130221085257-phpapp02.pdf
Presentation on htmlcssjs-130221085257-phpapp02.pdf
MeetRajani2
 
Html, css and jquery introduction
Html, css and jquery introductionHtml, css and jquery introduction
Html, css and jquery introduction
cncwebworld
 
Introduction to HTML+CSS+Javascript by Deepu.pptx
Introduction to HTML+CSS+Javascript by Deepu.pptxIntroduction to HTML+CSS+Javascript by Deepu.pptx
Introduction to HTML+CSS+Javascript by Deepu.pptx
deepuranjankumar08
 
Chapter 4a cascade style sheet css
Chapter 4a cascade style sheet cssChapter 4a cascade style sheet css
Chapter 4a cascade style sheet css
Tesfaye Yenealem
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptx
KADAMBARIPUROHIT
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptx
AliRaza899305
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptx
deepuranjankumar2002
 
Html, CSS, Javascript, Jquery, Meteor應用
Html, CSS, Javascript, Jquery, Meteor應用Html, CSS, Javascript, Jquery, Meteor應用
Html, CSS, Javascript, Jquery, Meteor應用
LearningTech
 
gdg Introduction to HTML-CSS-Javascript.pptx
gdg Introduction to HTML-CSS-Javascript.pptxgdg Introduction to HTML-CSS-Javascript.pptx
gdg Introduction to HTML-CSS-Javascript.pptx
saurabh45tiwari
 
Introduction to HTML-CSS-Javascript.pptx
Introduction to HTML-CSS-Javascript.pptxIntroduction to HTML-CSS-Javascript.pptx
Introduction to HTML-CSS-Javascript.pptx
deepak37877
 
wd project.pptx
wd project.pptxwd project.pptx
wd project.pptx
dsffsdf1
 
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
brianbyamukama302
 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptx
Alisha Kamat
 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptx
GDSCVJTI
 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptx
Alisha Kamat
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptx
SadiaBaig6
 

More from Knoldus Inc. (20)

Angular Hydration Presentation (FrontEnd)
Angular Hydration Presentation (FrontEnd)Angular Hydration Presentation (FrontEnd)
Angular Hydration Presentation (FrontEnd)
Knoldus Inc.
 
Optimizing Test Execution: Heuristic Algorithm for Self-Healing
Optimizing Test Execution: Heuristic Algorithm for Self-HealingOptimizing Test Execution: Heuristic Algorithm for Self-Healing
Optimizing Test Execution: Heuristic Algorithm for Self-Healing
Knoldus Inc.
 
Self-Healing Test Automation Framework - Healenium
Self-Healing Test Automation Framework - HealeniumSelf-Healing Test Automation Framework - Healenium
Self-Healing Test Automation Framework - Healenium
Knoldus Inc.
 
Kanban Metrics Presentation (Project Management)
Kanban Metrics Presentation (Project Management)Kanban Metrics Presentation (Project Management)
Kanban Metrics Presentation (Project Management)
Knoldus Inc.
 
Java 17 features and implementation.pptx
Java 17 features and implementation.pptxJava 17 features and implementation.pptx
Java 17 features and implementation.pptx
Knoldus Inc.
 
Chaos Mesh Introducing Chaos in Kubernetes
Chaos Mesh Introducing Chaos in KubernetesChaos Mesh Introducing Chaos in Kubernetes
Chaos Mesh Introducing Chaos in Kubernetes
Knoldus Inc.
 
GraalVM - A Step Ahead of JVM Presentation
GraalVM - A Step Ahead of JVM PresentationGraalVM - A Step Ahead of JVM Presentation
GraalVM - A Step Ahead of JVM Presentation
Knoldus Inc.
 
Nomad by HashiCorp Presentation (DevOps)
Nomad by HashiCorp Presentation (DevOps)Nomad by HashiCorp Presentation (DevOps)
Nomad by HashiCorp Presentation (DevOps)
Knoldus Inc.
 
Nomad by HashiCorp Presentation (DevOps)
Nomad by HashiCorp Presentation (DevOps)Nomad by HashiCorp Presentation (DevOps)
Nomad by HashiCorp Presentation (DevOps)
Knoldus Inc.
 
DAPR - Distributed Application Runtime Presentation
DAPR - Distributed Application Runtime PresentationDAPR - Distributed Application Runtime Presentation
DAPR - Distributed Application Runtime Presentation
Knoldus Inc.
 
Introduction to Azure Virtual WAN Presentation
Introduction to Azure Virtual WAN PresentationIntroduction to Azure Virtual WAN Presentation
Introduction to Azure Virtual WAN Presentation
Knoldus Inc.
 
Introduction to Argo Rollouts Presentation
Introduction to Argo Rollouts PresentationIntroduction to Argo Rollouts Presentation
Introduction to Argo Rollouts Presentation
Knoldus Inc.
 
Intro to Azure Container App Presentation
Intro to Azure Container App PresentationIntro to Azure Container App Presentation
Intro to Azure Container App Presentation
Knoldus Inc.
 
Insights Unveiled Test Reporting and Observability Excellence
Insights Unveiled Test Reporting and Observability ExcellenceInsights Unveiled Test Reporting and Observability Excellence
Insights Unveiled Test Reporting and Observability Excellence
Knoldus Inc.
 
Introduction to Splunk Presentation (DevOps)
Introduction to Splunk Presentation (DevOps)Introduction to Splunk Presentation (DevOps)
Introduction to Splunk Presentation (DevOps)
Knoldus Inc.
 
Code Camp - Data Profiling and Quality Analysis Framework
Code Camp - Data Profiling and Quality Analysis FrameworkCode Camp - Data Profiling and Quality Analysis Framework
Code Camp - Data Profiling and Quality Analysis Framework
Knoldus Inc.
 
AWS: Messaging Services in AWS Presentation
AWS: Messaging Services in AWS PresentationAWS: Messaging Services in AWS Presentation
AWS: Messaging Services in AWS Presentation
Knoldus Inc.
 
Amazon Cognito: A Primer on Authentication and Authorization
Amazon Cognito: A Primer on Authentication and AuthorizationAmazon Cognito: A Primer on Authentication and Authorization
Amazon Cognito: A Primer on Authentication and Authorization
Knoldus Inc.
 
ZIO Http A Functional Approach to Scalable and Type-Safe Web Development
ZIO Http A Functional Approach to Scalable and Type-Safe Web DevelopmentZIO Http A Functional Approach to Scalable and Type-Safe Web Development
ZIO Http A Functional Approach to Scalable and Type-Safe Web Development
Knoldus Inc.
 
Managing State & HTTP Requests In Ionic.
Managing State & HTTP Requests In Ionic.Managing State & HTTP Requests In Ionic.
Managing State & HTTP Requests In Ionic.
Knoldus Inc.
 
Angular Hydration Presentation (FrontEnd)
Angular Hydration Presentation (FrontEnd)Angular Hydration Presentation (FrontEnd)
Angular Hydration Presentation (FrontEnd)
Knoldus Inc.
 
Optimizing Test Execution: Heuristic Algorithm for Self-Healing
Optimizing Test Execution: Heuristic Algorithm for Self-HealingOptimizing Test Execution: Heuristic Algorithm for Self-Healing
Optimizing Test Execution: Heuristic Algorithm for Self-Healing
Knoldus Inc.
 
Self-Healing Test Automation Framework - Healenium
Self-Healing Test Automation Framework - HealeniumSelf-Healing Test Automation Framework - Healenium
Self-Healing Test Automation Framework - Healenium
Knoldus Inc.
 
Kanban Metrics Presentation (Project Management)
Kanban Metrics Presentation (Project Management)Kanban Metrics Presentation (Project Management)
Kanban Metrics Presentation (Project Management)
Knoldus Inc.
 
Java 17 features and implementation.pptx
Java 17 features and implementation.pptxJava 17 features and implementation.pptx
Java 17 features and implementation.pptx
Knoldus Inc.
 
Chaos Mesh Introducing Chaos in Kubernetes
Chaos Mesh Introducing Chaos in KubernetesChaos Mesh Introducing Chaos in Kubernetes
Chaos Mesh Introducing Chaos in Kubernetes
Knoldus Inc.
 
GraalVM - A Step Ahead of JVM Presentation
GraalVM - A Step Ahead of JVM PresentationGraalVM - A Step Ahead of JVM Presentation
GraalVM - A Step Ahead of JVM Presentation
Knoldus Inc.
 
Nomad by HashiCorp Presentation (DevOps)
Nomad by HashiCorp Presentation (DevOps)Nomad by HashiCorp Presentation (DevOps)
Nomad by HashiCorp Presentation (DevOps)
Knoldus Inc.
 
Nomad by HashiCorp Presentation (DevOps)
Nomad by HashiCorp Presentation (DevOps)Nomad by HashiCorp Presentation (DevOps)
Nomad by HashiCorp Presentation (DevOps)
Knoldus Inc.
 
DAPR - Distributed Application Runtime Presentation
DAPR - Distributed Application Runtime PresentationDAPR - Distributed Application Runtime Presentation
DAPR - Distributed Application Runtime Presentation
Knoldus Inc.
 
Introduction to Azure Virtual WAN Presentation
Introduction to Azure Virtual WAN PresentationIntroduction to Azure Virtual WAN Presentation
Introduction to Azure Virtual WAN Presentation
Knoldus Inc.
 
Introduction to Argo Rollouts Presentation
Introduction to Argo Rollouts PresentationIntroduction to Argo Rollouts Presentation
Introduction to Argo Rollouts Presentation
Knoldus Inc.
 
Intro to Azure Container App Presentation
Intro to Azure Container App PresentationIntro to Azure Container App Presentation
Intro to Azure Container App Presentation
Knoldus Inc.
 
Insights Unveiled Test Reporting and Observability Excellence
Insights Unveiled Test Reporting and Observability ExcellenceInsights Unveiled Test Reporting and Observability Excellence
Insights Unveiled Test Reporting and Observability Excellence
Knoldus Inc.
 
Introduction to Splunk Presentation (DevOps)
Introduction to Splunk Presentation (DevOps)Introduction to Splunk Presentation (DevOps)
Introduction to Splunk Presentation (DevOps)
Knoldus Inc.
 
Code Camp - Data Profiling and Quality Analysis Framework
Code Camp - Data Profiling and Quality Analysis FrameworkCode Camp - Data Profiling and Quality Analysis Framework
Code Camp - Data Profiling and Quality Analysis Framework
Knoldus Inc.
 
AWS: Messaging Services in AWS Presentation
AWS: Messaging Services in AWS PresentationAWS: Messaging Services in AWS Presentation
AWS: Messaging Services in AWS Presentation
Knoldus Inc.
 
Amazon Cognito: A Primer on Authentication and Authorization
Amazon Cognito: A Primer on Authentication and AuthorizationAmazon Cognito: A Primer on Authentication and Authorization
Amazon Cognito: A Primer on Authentication and Authorization
Knoldus Inc.
 
ZIO Http A Functional Approach to Scalable and Type-Safe Web Development
ZIO Http A Functional Approach to Scalable and Type-Safe Web DevelopmentZIO Http A Functional Approach to Scalable and Type-Safe Web Development
ZIO Http A Functional Approach to Scalable and Type-Safe Web Development
Knoldus Inc.
 
Managing State & HTTP Requests In Ionic.
Managing State & HTTP Requests In Ionic.Managing State & HTTP Requests In Ionic.
Managing State & HTTP Requests In Ionic.
Knoldus Inc.
 

Introduction of Html/css/js

  • 1. Introduction of HTML/CSS/JS Ruchi Agarwal Software Consultant Knoldus Software
  • 2. What is HTML? ● HTML is a language for describing web pages. ● 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
  • 3. HTML Tags ● HTML markup tags are usually called HTML tags ● HTML tags are keywords (tag names) surrounded by angle brackets like <html> ● HTML tags normally come in pairs like <b> and </b> ● 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 forward slash before the tag name ● Start and end tags are also called opening tags and closing tags <tagname>content</tagname>
  • 4. Basic HTML page structure
  • 6. 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 ● A CSS (cascading style sheet) file allows to separate web sites HTML content from it’s style.
  • 7. How to use CSS? There are three ways of inserting a style sheet: External Style Sheet: An external style sheet is ideal when the style is applied to many pages. <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. <head> <style> p {margin-left:20px;} body {background-image:url("images/back40.gif");} </style> </head>
  • 8. Inline Styles: To use inline styles use the style attribute in the relevant tag. The style attribute can contain any CSS property. <p style="color:#fafafa;margin-left:20px">This is a paragraph.</p> Multiple Styles Will Cascade into One: Cascading order ● Inline style (inside an HTML element) ● Internal style sheet (in the head section) ● External style sheet ● Browser default
  • 9. CSS Syntax A CSS rule has two main parts: a selector, and one or more declarations: Combining Selectors h1, h2, h3, h4, h5, h6 { color: #009900; font-family: Georgia, sans-serif; }
  • 10. The id Selector The id selector is used to specify a style for a single, unique element. The id selector uses the id attribute of the HTML element, and is defined with a "#". Syntax #selector-id { property : value ; } The class Selector The class selector is used to specify a style for a group of elements. The class selector uses the HTML class attribute, and is defined with a "." Syntax .selector-class { property : value ; }
  • 11. CSS Anchors, Links and Pseudo Classes: Below are the various ways you can use CSS to style links. a:link {color: #009900;} a:visited {color: #999999;} a:hover {color: #333333;} a:focus {color: #333333;} a:active {color: #009900;}
  • 12. 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 CSS box model is essentially a box that wraps around HTML elements, and it consists of: margins, borders, padding, and the actual content. ● The box model allows to place a border around elements and space elements in relation to other elements.
  • 13. Example #signup-form { #signup-form .fieldgroup input, #signup-form background-color: #F8FDEF; .fieldgroup textarea, #signup-form border: 1px solid #DFDCDC; .fieldgroup select { border-radius: 15px 15px 15px 15px; float: right; display: inline-block; margin: 10px 0; margin-bottom: 30px; height: 25px; margin-left: 20px; } margin-top: 10px; padding: 25px 50px 10px; #signup-form .submit { width: 350px; padding: 10px; } width: 220px; height: 40px !important; #signup-form .fieldgroup { } display: inline-block; padding: 8px 10px; #signup-form .fieldgroup label.error { width: 340px; color: #FB3A3A; } display: inline-block; margin: 4px 0 5px 125px; #signup-form .fieldgroup label { padding: 0; float: left; text-align: left; padding: 15px 0 0; width: 220px; text-align: right; } width: 110px; }
  • 14. What is JavaScript ● JavaScript is a Scripting Language ● A scripting language is a lightweight programming language. ● JavaScript is programming code that can be inserted into HTML pages. ● JavaScript inserted into HTML pages, can be executed by all modern web browsers.
  • 15. How to use JavaScript? The <script> Tag To insert a JavaScript into an HTML page, use the <script> tag. The <script> and </script> tells where the JavaScript starts and ends. <script> alert("My First JavaScript"); </script> JavaScript in <body> <html> <body> <script> document.write("<h1>This is a heading</h1>"); </script> </body> </html>
  • 16. External JavaScripts Scripts can also be placed in external files. External files often contain code to be used by several different web pages. External JavaScript files have the file extension .js. To use an external script, point to the .js file in the "src" attribute of the <script> tag: <html> <body> <script src="myScript.js"></script> </body> </html>
  • 17. The HTML DOM (Document Object Model) When a web page is loaded, the browser creates a Document Object Model of the page. The HTML DOM model is constructed as a tree of Objects:
  • 18. Finding HTML Elements by Id document.getElementById("<id-name>"); Finding HTML Elements by Tag Name document.getElementsByTagName("<tag>"); Finding HTML Elements by Name document.getElementsByName(“<name-attr>”) Finding HTML Elements by Class document.getElementByClass(“<class-name>”)
  • 19. Writing Into HTML Output document.write("<h1>This is a heading</h1>"); document.write("<p>This is a paragraph</p>"); Reacting to Events <button type="button" onclick="alert('Welcome!')">Click Me!</button> Changing HTML Content Using JavaScript to manipulate the content of HTML elements is a very powerful functionality. x=document.getElementById("demo") //Find the element x.innerHTML="Hello JavaScript"; //Change the content
  • 20. Changing HTML Styles Changing the style of an HTML element, is a variant of changing an HTML attribute. x=document.getElementById("demo") //Find the element x.style.color="#ff0000"; //Change the style Validate Input JavaScript is commonly used to validate input. if isNaN(x) {alert("Not Numeric")};
  • 21. Example function validateForm() { var nameValue=document.getElementById('name'); verifyName(nameValue); var emailValue=document.getElementById('email'); verifyEmail(emailValue); var password=document.getElementById('password'); verifyPassword(password,8,12); } function verifyName(uname) { var letters = /^[A-Za-z]+$/; if(uname.value.match(letters)) { return true; } else { alert('Invalid name'); return false; } }
  • 22. What is jQuery? ● jQuery is a lightweight, "write less, do more", JavaScript library. ● The purpose of jQuery is to make it much easier to use JavaScript on your website. ● jQuery takes a lot of common tasks that requires many lines of JavaScript code to accomplish, and wraps it into methods that you can call with a single line of code. ● jQuery also simplifies a lot of the complicated things from JavaScript, like AJAX calls and DOM manipulation. Features: ● HTML/DOM manipulation ● CSS manipulation ● HTML event methods ● Effects and animations ● AJAX
  • 23. jQuery Syntax Basic syntax: $(selector).action() ● A $ sign to define/access jQuery ● A (selector) to "query (or find)" HTML elements ● A jQuery action() to be performed on the element(s) Example: $("p").hide() - hides all <p> elements. How to use Jquery: <head> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> </head>
  • 24. jQuery Selectors: jQuery selectors allow you to select and manipulate HTML element(s). The element , id and class Selector The jQuery element selector selects elements based on their tag names. $("<tag-name>") //element selector $("#<id-name>") // id selector $(".<class-name>") // class selector Example $(document).ready(function(){ $("button").click(function(){ $("p").hide(); $("#test").hide(); //#id selector $(".test").hide(); //.class selector }); });
  • 26. jQuery Event All the different visitors actions that a web page can respond to are called events. An event represents the precise moment when something happens. Mouse Events Keyboard Events Form Events Document/Window Events click keypress submit load dblclick keydown change resize mouseenter keyup focus scroll mouseleave blur unload Example: $("p").click(function(){ // action goes here!! });
  • 27. JQuery Effects: JQuery hide(), show() and toggle() method $(selector).hide(speed,callback); $(selector).show(speed,callback); $(selector).toggle(speed,callback); jQuery fadeIn() , fadeOut() ,fadeToggle() and fadeTo() method $(selector).fadeIn(speed,callback); $(selector).fadeOut(speed,callback); $(selector).fadeToggle(speed,callback); $(selector).fadeTo(speed,callback);
  • 28. jQuery Sliding Methods $(selector).slideDown(speed,callback); $(selector).slideUp(speed,callback); $(selector).slideToggle(speed,callback); jQuery Animations - The animate() Method $(selector).animate({params},speed,callback); jQuery stop() Method $(selector).stop(stopAll,goToEnd);
  • 29. jQuery Method Chaining $(selector).css("color","red").slideUp(2000).slideDown(2000); jQuery - Get Content and Attributes $(selector).click(function(){ alert("Text: " + $(selector).text()); alert("HTML: " + $(selector).html()); alert("Value: " + $(input-selector).val()); alert($(link-selector).attr("href")); });
  • 30. jQuery - Set Content and Attributes $(selector).click(function(){ $(selector).text("Hello world!"); $(selector).html("<b>Hello world!</b>"); $(input-selector).val("Dolly Duck"); $(link-selector).attr("href","http://www.google.com”); }); jQuery - Add Elements $(selector).append("Some appended text."); $(selector).prepend("Some prepended text.");
  • 31. jQuery - Remove Elements $("#<id-name>").remove(); jQuery Manipulating CSS addClass() - Adds one or more classes to the selected elements $("<tag-name>").addClass("<class-name>"); removeClass() - Removes one or more classes from the selected elements $("<tag-name>").removeClass("<class-name>"); toggleClass() - Toggles between adding/removing classes from the selected elements $("<tag-name>").toggleClass("<class-name>"); css() - Sets or returns the style attribute $("<tag-name>").css("background-color","yellow");
  • 33. jQuery - AJAX AJAX = Asynchronous JavaScript and XML. In short; AJAX is about loading data in the background and display it on the webpage, without reloading the whole page. jQuery load() Method ● The jQuery load() method is a simple, but powerful AJAX method. ● The load() method loads data from a server and puts the returned data into the selected element. Syntax: $(selector).load(URL,data,callback);
  • 34. Example ajax load() $("#success").load("htmlForm.html", function(response, status, xhr) { if (status == "error") { var msg = "Sorry but there was an error: "; $("#error").html(msg + xhr.status + " " + xhr.statusText); } }); $.ajax() $.ajax({ url: filename, type: 'GET', dataType: 'html', beforeSend: function() { $('.contentarea').html('<img src="images/loading.gif" />'); }, success: function(data, textStatus, xhr) { $('.contentarea').html(data); }, error: function(xhr, textStatus, errorThrown) { $('.contentarea').html(textStatus); } });
  • 35. jQuery - AJAX get() and post() Methods Two commonly used methods for a request-response between a client and server are: GET and POST. GET is basically used for just getting (retrieving) some data from the server. The GET method may return cached data. POST can also be used to get some data from the server. However, the POST method NEVER caches data, and is often used to send data along with the request. Syntax: $.get(URL,callback); $.post(URL,data,callback);