SlideShare a Scribd company logo
-Rajat Shah
-Soumya Ghosh
   What is Internet and how it works.
    ◦   DNS (Domain Name System)
    ◦   IP address
    ◦   Protocols: HTTP
    ◦   World Wide Web (WWW)
   Web Programming
    ◦ HTML
    ◦ CSS
    ◦ Basics of Server-side Scripting.
   Its is vast network of inter connected
    computers that uses a specific set of rules
    called Internet Protocols (abbreviated as IP) to
    communicate.

    Provides the physical backbone for a number
    of interesting applications.
   Is a part of the Internet "designed to allow
    easier navigation through the use of graphical
    user interfaces and hypertext links between
    different addresses“
   Uses the HTTP protocol.
   Global set of documents, images and other
    resources, logically interrelated by hyperlinks
    and referenced with Uniform Resource
    Locators(URLs).
   IP: Internet Protocol
    ◦ Responsible for labelling individual packets with the source
      address and destination address of two computers
      exchanging information over a network.
    ◦ IP Address:
    ◦ Eg.: IPv4: 172.16.254.1 (32 bits)
    ◦        IPv6: 2001:db8:0:1234:0::567:8:1 (128 bits)
    ◦ IP can be static or dynamic.

• HTTP: Hyper Text Transfer Protocol
  • Is the language Web browsers and Server use to
    communicate using IP.
  • Standard which describes how a browser makes a request
    to the web server program.
  • HTTPS?
   DNS (Domain Name System)
    ◦ Responsible for converting the hostnames to the IP Address.
    ◦ For example, the domain name www.example.com
      translates to the addresses 192.0.43.10 (IPv4) and
      2620:0:2d0:200::10 (IPv6)
    ◦ Name Server may query various website while resolving the
      address of the host name.

• UR(Uniform Resource Locator)

    ◦ Eg.
      http://www.vnit.ac.in/lecture/Introduction_to_web.html

   ISP (Internet Service Provider):
    ◦ Are those private companies which provide internet
      connection. We get connected to internet via our ISP.
Introduction to web designing
   Client:
    ◦ Content or service requesters.
    ◦ Web browsers such as Mozilla, Chrome are clients.
    ◦ Functionalities?

   Server:
    ◦ The provider of a resource or service.
    ◦ High speed computers with large hard disk capacity.
    ◦ A server machine is a host that is running one or more server programs
      which share their resources with clients.
    ◦ Functionalities?

   Proxy servers:
    ◦ Acts as an intermediary for requests from clients seeking resources from server.
    ◦ Eg: The proxy server we user in our hostels : 172.31.16.10
    ◦ How does it speed up browsing?


    How it differs from Peer to Peer (P2P)?
Introduction to web designing
   To view a web page from your browser, the
    following sequence happens:
    ◦ You either type an address (URL) into your "Address
      Bar" or click on a hyperlink.
    ◦ Your browser sends a request to your ISP server
      asking for the page.
    ◦ Your ISP server using DNS looks in a huge database
      of internet addresses (IP) and finds the exact host
      server which houses the website in question, then
      sends that host server a request for the page.
    ◦ The host server sends the requested page to your
      ISP server.
    ◦ Your ISP sends the page to your browser and you
      see it displayed on your screen.
   Commonly used languages:
    ◦ HTML: Defines the structure of a web page.
    ◦ CSS: Defines the styling and layout of contents of a
      webpage.
    ◦ Javascript: Client side scripting language. It adds
      interactivity to a web page.
    ◦ PHP (Hypertext Preprocessor): Server side scripting
      language.
    ◦ SQL (Structured Query Language): Language used to
      query databases.
Introduction to web designing
   HTML stands for HyperText Markup
    Language.
   HTML is not a programming language, it is a
    markup language.
   Is the core technology in which all Web pages
    are written.
   HTML tags are interpreted by a web browser
    and composed into visible or audible
    webpages.
   HTML tags are case-insensitive.
    The majority of HTML tags do require both an open and a close tag.
    All HTML documents start with <html> tag and end with </html>

An example of a simple HTML document:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  "http://www.w3.org/TR/html4/strict.dtd">
<HTML>
  <HEAD>
     <!—Contains title, meta tags, links to external scripts(CSS, Javascript) -->
    <TITLE>My first HTML document</TITLE>
  </HEAD>
  <BODY>
     <!—Contains the content of the web page-->
    <P>Hello world!
  </BODY>
</HTML>
   HTML headings are defined with the <h1> to <h6>
    tags. The lower the number, the larger the heading
    size.
   HTML paragraphs are defined with the <p> tag.
    Most browsers automatically put a line break and
    space after a </p> tags.
   HTML links are defined with the <a> called anchor
    tag.
    ◦ Absolute reference:
        <a href=“http://vnit.ac.in”>VNIT</a>
    ◦ Relative reference:
         <a href=“/contacts”>VNIT, Contacts</a>
        Target attribute?
   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"
   Example:
       <a href="http://vnit.ac.in">This is a link</a>
       Here the attribute name is href and its value is
http://vnit.ac.in
   Images can be added to a web page using img
    or through CSS.
    ◦ Eg.:
        <img src=“abc.jpg” alt=“A image” width=“300px”
        height=“200px”/>
    ◦ Use of alt, src , width and height attributes?
   With HTML5, we can directly add a audio or
    video files into a web page
    ◦ Eg.: <audio controls="controls">
               <source src="audio file.mp3"
        type="audio/mpeg">
             </audio>
   Tables are an excellent way to organize and
    display information on a page.
    ◦ defined using the <table> tag.
    ◦ A table is divided into rows with the <tr> tag, and
      each row is divided into data cells using the <td>
      tag. The letters td stand for “table data,” which is
      the content of a data cell. A data cell can contain
      text, images, lists, paragraphs, forms, horizontal
      rules, tables, and so on.
   HTML forms are used to collect different
    kinds of user input. A form is an area that can
    contain form elements.
   Form elements are elements that allow the
    user to enter information in a form (like text
    fields, text area fields, drop-down menus,
    radio buttons, check boxes, and so on).
   Tags used:
    ◦ Form, Input, textarea, select, etc.
   Language used to design a webpage.

   Styles enable you to define a consistent 'look' for your
    documents by describing once how headings,
    paragraphs, quotes, etc. should be displayed.

   Latest version is CSS3.

   Can be inline, in page, external.
   Inline:
    ◦ Use style attribute. Multiple styles separated by semi-colon.
    ◦ Always defined in opening tag.
    ◦ <body style=“background-color:green;”>
   In page :
    ◦ Use style tag. Multiple styles separated by semi-colon.
    <style type=“text/css”>
        body
        {
               background-color:green;
            Color: red;
        }
    </style>
   External:
    ◦ a separate CSS file referenced from the document
                 <link href="path/to/file.css" rel="stylesheet">
    ◦ Style sheet syntax is made up of three parts:
        selector {property: value}
   Class:
    ◦ When multiple elements in a web page have similar
      properties, we define class of them.
       Class attribute is used.
       A single dot (.) is used to define property of a class.
       Eg.:
             .class_name
             { color:blue; }
   Id:
    ◦ Specifies a unique id for an element.
       Id attribute is used.
       A single hash (#) is used to define property of a class.
       Eg.:
             #id_name
             { color:blue; }
   Hand coding, use Nodepad++.
   Use a WYSIWYG editor like Adobe,
    dreamweaver.
   Use online services like Blogspot, Google site,
    Wordpress, etc.
   Use Content Management System (CMS) like
    Wordpress, Joomla, etc.
   http://w3schools.com
-Rajat Shah
rajat.shah200792@gmail.com

More Related Content

PPTX
Fundamentals of Web building
PPTX
PPSX
Steph's Html5 and css presentation
PPTX
Html and css presentation
PPTX
Css ppt
PPTX
Lesson2
PDF
Unit 4(it workshop)
PPTX
Hushang Gaikwad
Fundamentals of Web building
Steph's Html5 and css presentation
Html and css presentation
Css ppt
Lesson2
Unit 4(it workshop)
Hushang Gaikwad

What's hot (20)

PDF
Webpage style with CSS
PDF
Intro to Web Standards
PPTX
Dynamic HTML (DHTML)
PPTX
uptu web technology unit 2 html
PPTX
Html and css
PPT
Intr to-html-xhtml-1233508169541646-3
PDF
Unit 3 (it workshop).pptx
PPT
PPTX
Web Information Systems XML
PPTX
Introduction to web services
PPTX
Web Information Systems Html and css
PDF
Introduction to Web Standards
PPTX
Complete Lecture on Css presentation
PDF
Html css workshop, lesson 0, how browsers work
PPTX
Dhtml
PPTX
Unit iv xml dom
PPT
Html introduction
PPTX
Cascading style sheets
PPT
Advanced dreamweaver
Webpage style with CSS
Intro to Web Standards
Dynamic HTML (DHTML)
uptu web technology unit 2 html
Html and css
Intr to-html-xhtml-1233508169541646-3
Unit 3 (it workshop).pptx
Web Information Systems XML
Introduction to web services
Web Information Systems Html and css
Introduction to Web Standards
Complete Lecture on Css presentation
Html css workshop, lesson 0, how browsers work
Dhtml
Unit iv xml dom
Html introduction
Cascading style sheets
Advanced dreamweaver
Ad

Viewers also liked (15)

PPSX
Eltra Opulent Associates Ltd Powerpoint Presentation Web Company Profile
PDF
Schemaless Change detection in XML Documents using Semantic Identifiers
PDF
Introduction to Web Designing
PPT
Intro to Web Design
PPTX
Life at Siegel+Gale
PDF
THANATOS Digital Agency | Company Profile ENG
PPTX
Company Profile Design: Best Practices 2016
KEY
Web Design 101
PPTX
eXo Digital Agency - Company Profile
PDF
TEN Creative Design Agency Creds
PDF
LEAP Agency Company Profile
PDF
Mix Digital Marketing Agency Credentials
PPT
Ppt of company profile in project
PPT
Tcs company profile presentation -sample
PDF
Company Profile Sample
Eltra Opulent Associates Ltd Powerpoint Presentation Web Company Profile
Schemaless Change detection in XML Documents using Semantic Identifiers
Introduction to Web Designing
Intro to Web Design
Life at Siegel+Gale
THANATOS Digital Agency | Company Profile ENG
Company Profile Design: Best Practices 2016
Web Design 101
eXo Digital Agency - Company Profile
TEN Creative Design Agency Creds
LEAP Agency Company Profile
Mix Digital Marketing Agency Credentials
Ppt of company profile in project
Tcs company profile presentation -sample
Company Profile Sample
Ad

Similar to Introduction to web designing (20)

PDF
Les Basiques - Web Développement HTML5, CSS3, JS et PHP
PDF
Unit 01 (1).pdf
PPTX
web design notes for students to web basics
PPTX
WEB TECHNOLOGY:Web Essentials and Markup Language HTML
PPTX
Website/Web Applications / Static vs Dynamic Website / Web Browser /
PPTX
Choice of programming language for web developing.
PDF
Ncp computer appls web tech asish
PPTX
Introduction to the web, WWW architecture, Fundamentals of HTML, Text form...
PDF
Lab1-FrontEndTraining For everybody..pdf
PDF
Iwt module 1
PPTX
WP Chap 1 & 2.pptx
PPSX
web devs ppt.ppsx
PPTX
Introduction to Web Techniques_Key componenets_HTML Basics
PPTX
Html-meeting1-1.pptx
PPTX
Web Pages
PPT
Html intake 38 lect1
DOCX
this a JAVA PROGRAMMING manual file.docx
PPTX
Fundamental of Web Development Tutorials by PINFO Technologies.pptx
PPTX
WEB DEVELOPMENT
PPTX
Tech Winter Break - GDG on Campus - PIET
Les Basiques - Web Développement HTML5, CSS3, JS et PHP
Unit 01 (1).pdf
web design notes for students to web basics
WEB TECHNOLOGY:Web Essentials and Markup Language HTML
Website/Web Applications / Static vs Dynamic Website / Web Browser /
Choice of programming language for web developing.
Ncp computer appls web tech asish
Introduction to the web, WWW architecture, Fundamentals of HTML, Text form...
Lab1-FrontEndTraining For everybody..pdf
Iwt module 1
WP Chap 1 & 2.pptx
web devs ppt.ppsx
Introduction to Web Techniques_Key componenets_HTML Basics
Html-meeting1-1.pptx
Web Pages
Html intake 38 lect1
this a JAVA PROGRAMMING manual file.docx
Fundamental of Web Development Tutorials by PINFO Technologies.pptx
WEB DEVELOPMENT
Tech Winter Break - GDG on Campus - PIET

Introduction to web designing

  • 2. What is Internet and how it works. ◦ DNS (Domain Name System) ◦ IP address ◦ Protocols: HTTP ◦ World Wide Web (WWW)  Web Programming ◦ HTML ◦ CSS ◦ Basics of Server-side Scripting.
  • 3. Its is vast network of inter connected computers that uses a specific set of rules called Internet Protocols (abbreviated as IP) to communicate.  Provides the physical backbone for a number of interesting applications.
  • 4. Is a part of the Internet "designed to allow easier navigation through the use of graphical user interfaces and hypertext links between different addresses“  Uses the HTTP protocol.  Global set of documents, images and other resources, logically interrelated by hyperlinks and referenced with Uniform Resource Locators(URLs).
  • 5. IP: Internet Protocol ◦ Responsible for labelling individual packets with the source address and destination address of two computers exchanging information over a network. ◦ IP Address: ◦ Eg.: IPv4: 172.16.254.1 (32 bits) ◦ IPv6: 2001:db8:0:1234:0::567:8:1 (128 bits) ◦ IP can be static or dynamic. • HTTP: Hyper Text Transfer Protocol • Is the language Web browsers and Server use to communicate using IP. • Standard which describes how a browser makes a request to the web server program. • HTTPS?
  • 6. DNS (Domain Name System) ◦ Responsible for converting the hostnames to the IP Address. ◦ For example, the domain name www.example.com translates to the addresses 192.0.43.10 (IPv4) and 2620:0:2d0:200::10 (IPv6) ◦ Name Server may query various website while resolving the address of the host name. • UR(Uniform Resource Locator) ◦ Eg. http://www.vnit.ac.in/lecture/Introduction_to_web.html  ISP (Internet Service Provider): ◦ Are those private companies which provide internet connection. We get connected to internet via our ISP.
  • 8. Client: ◦ Content or service requesters. ◦ Web browsers such as Mozilla, Chrome are clients. ◦ Functionalities?  Server: ◦ The provider of a resource or service. ◦ High speed computers with large hard disk capacity. ◦ A server machine is a host that is running one or more server programs which share their resources with clients. ◦ Functionalities?  Proxy servers: ◦ Acts as an intermediary for requests from clients seeking resources from server. ◦ Eg: The proxy server we user in our hostels : 172.31.16.10 ◦ How does it speed up browsing? How it differs from Peer to Peer (P2P)?
  • 10. To view a web page from your browser, the following sequence happens: ◦ You either type an address (URL) into your "Address Bar" or click on a hyperlink. ◦ Your browser sends a request to your ISP server asking for the page. ◦ Your ISP server using DNS looks in a huge database of internet addresses (IP) and finds the exact host server which houses the website in question, then sends that host server a request for the page. ◦ The host server sends the requested page to your ISP server. ◦ Your ISP sends the page to your browser and you see it displayed on your screen.
  • 11. Commonly used languages: ◦ HTML: Defines the structure of a web page. ◦ CSS: Defines the styling and layout of contents of a webpage. ◦ Javascript: Client side scripting language. It adds interactivity to a web page. ◦ PHP (Hypertext Preprocessor): Server side scripting language. ◦ SQL (Structured Query Language): Language used to query databases.
  • 13. HTML stands for HyperText Markup Language.  HTML is not a programming language, it is a markup language.  Is the core technology in which all Web pages are written.  HTML tags are interpreted by a web browser and composed into visible or audible webpages.
  • 14. HTML tags are case-insensitive.  The majority of HTML tags do require both an open and a close tag.  All HTML documents start with <html> tag and end with </html> An example of a simple HTML document: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <HTML> <HEAD> <!—Contains title, meta tags, links to external scripts(CSS, Javascript) --> <TITLE>My first HTML document</TITLE> </HEAD> <BODY> <!—Contains the content of the web page--> <P>Hello world! </BODY> </HTML>
  • 15. HTML headings are defined with the <h1> to <h6> tags. The lower the number, the larger the heading size.  HTML paragraphs are defined with the <p> tag. Most browsers automatically put a line break and space after a </p> tags.  HTML links are defined with the <a> called anchor tag. ◦ Absolute reference: <a href=“http://vnit.ac.in”>VNIT</a> ◦ Relative reference: <a href=“/contacts”>VNIT, Contacts</a> Target attribute?
  • 16. 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"  Example: <a href="http://vnit.ac.in">This is a link</a> Here the attribute name is href and its value is http://vnit.ac.in
  • 17. Images can be added to a web page using img or through CSS. ◦ Eg.: <img src=“abc.jpg” alt=“A image” width=“300px” height=“200px”/> ◦ Use of alt, src , width and height attributes?  With HTML5, we can directly add a audio or video files into a web page ◦ Eg.: <audio controls="controls"> <source src="audio file.mp3" type="audio/mpeg"> </audio>
  • 18. Tables are an excellent way to organize and display information on a page. ◦ defined using the <table> tag. ◦ A table is divided into rows with the <tr> tag, and each row is divided into data cells using the <td> tag. The letters td stand for “table data,” which is the content of a data cell. A data cell can contain text, images, lists, paragraphs, forms, horizontal rules, tables, and so on.
  • 19. HTML forms are used to collect different kinds of user input. A form is an area that can contain form elements.  Form elements are elements that allow the user to enter information in a form (like text fields, text area fields, drop-down menus, radio buttons, check boxes, and so on).  Tags used: ◦ Form, Input, textarea, select, etc.
  • 20. Language used to design a webpage.  Styles enable you to define a consistent 'look' for your documents by describing once how headings, paragraphs, quotes, etc. should be displayed.  Latest version is CSS3.  Can be inline, in page, external.  Inline: ◦ Use style attribute. Multiple styles separated by semi-colon. ◦ Always defined in opening tag. ◦ <body style=“background-color:green;”>
  • 21. In page : ◦ Use style tag. Multiple styles separated by semi-colon. <style type=“text/css”> body { background-color:green; Color: red; } </style>  External: ◦ a separate CSS file referenced from the document <link href="path/to/file.css" rel="stylesheet"> ◦ Style sheet syntax is made up of three parts: selector {property: value}
  • 22. Class: ◦ When multiple elements in a web page have similar properties, we define class of them.  Class attribute is used.  A single dot (.) is used to define property of a class.  Eg.: .class_name { color:blue; }  Id: ◦ Specifies a unique id for an element.  Id attribute is used.  A single hash (#) is used to define property of a class.  Eg.: #id_name { color:blue; }
  • 23. Hand coding, use Nodepad++.  Use a WYSIWYG editor like Adobe, dreamweaver.  Use online services like Blogspot, Google site, Wordpress, etc.  Use Content Management System (CMS) like Wordpress, Joomla, etc.
  • 24. http://w3schools.com