UNIT II WEB PAGE BASICS & HTML

Slides:



Advertisements
Similar presentations
Introduction to Web Design Lecture number:. Todays Aim: Introduction to Web-designing and how its done. Modelling websites in HTML.
Advertisements

Neal Stublen Content Models  Metadata content Data not necessarily presented on the page ○ title, link, meta, style  Flow content.
Cascading Style Sheets
 CSS ids  Pages  Sites  HTML: class=“name”  Names may define format OR content › Either works  CAN apply multiple classes to the same tag  Multiple.
World Wide Web1 Applications World Wide Web. 2 Introduction What is hypertext model? Use of hypertext in World Wide Web (WWW) – HTML. WWW client-server.
Chapter 14 Introduction to HTML
Building the User Interface by Using HTML5: Organization, Input, and Validation Lesson 3.
Additional Topics. Tutorial #9 Review – Forms Forms Legend and fieldset Fields Text Password Radio buttons, check box, text area, select lists Buttons.
CHAPTER 2 HTML & HTML5 II อ. ยืนยง กันทะเนตร คณะเทคโนโลยีสารสนเทศและการสื่อสาร มหาวิทยาลัยพะเยา 1.
HTML and CSS- Layout. HTML Layout Frame Table – Block HTML5 layout elements.
The New Elements © Main Menu Structure Media Canvas Form Click on one of the categories below to view information about the new HTML5 elements in.
 Word doc for you to download › Link at the beginning of class › 10 Questions › Answers to be added inline  Post to Sakai when completed › No resubmits.
HTML | DOM. Objectives  HTML – Hypertext Markup Language  Sematic markup  Common tags/elements  Document Object Model (DOM)  Work on page | HTML.
Copyright 2007, Information Builders. Slide 1 Understanding Basic HTML Amanda Regan Technical Director June, 2008.
>> HTML: Structure Elements. Elements in HTML are either Inline or Block. Block-level Elements – Begins on a new line – Occupy the whole width – Stacks.
Lecture 2 - HTML and CSS Review SFDV3011 – Advanced Web Development 1.
audio video object Options: controls autoplay Need to define height and width Options: controls autoplay.
HTML.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
Introduction to Web Authoring Ellen Cushman /wra210.htm Class mtg. #2.
1999, COMPUTER SCIENCE, BUU Introduction to HTML Seree Chinodom
 Add one element at a time  If it doesn’t do what you want, › Delete it › DON’T just keep piling on more items.
Web Design Terminology Unit 2 STEM. 1. Accessibility – a web page or site that address the users limitations or disabilities 2. Active server page (ASP)
INT222 – Internet Fundamentals Week 8: Using New HTML features 1.
HTML Help book. HTML HTML is the programming language used to make web pages for the Internet. HTML stands for Hyper Text Markup Language. HTML is made.
INTRODUCTION ABOUT DIV Most websites have put their content in multiple columns. Multiple columns are created by using or elements. The div element is.
Week 1: Introduction to HTML and Web Design
Chapter 2 Markup Language By : Madam Hazwani binti Rahmat
Chapter 9 HTML 5 Video and Audio
Intro to HTML CS 1150 Spring 2017.
HTML CS 4640 Programming Languages for Web Applications
Web Development Part 2.
Web Systems & Technologies
UNIT II WEB PAGE BASICS & HTML
CGS 3066: Lecture 2 Web Development and HTML5
Web Development Part 1.
Intro to HTML CS 1150 Fall 2016.
Organizing Content with Lists and Tables
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
HTML: HyperText Markup Language
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
PPT By:Gaurav Jaiswal Singsys Pte. Ltd.
CGS 3066: Web Programming and Design Spring 2016
Programming the Web using XHTML and JavaScript
HTML BASICS Test page Internet Programming This is a sample web page in testing HTML commands
HTML 5.0 (list,table,image,forms,frames)
HTML Vocabulary.
Getting Started with Dreamweaver
Basic HTML Document Structure
Essentials of Web Pages
Styles and the Box Model
TOPICS Chrome Dev Tools Process for Building a Static Website
Laying out a website using CSS and HTML
Fixed Positioning.
Robert Kiffe Senior Customer Support Engineer
CGS 3066: Lecture 2 Web Development and HTML5
HTML 5 SEMANTIC ELEMENTS.
Computer communications
CIS 133 mashup Javascript, jQuery and XML
Creating a Basic Web Page using HTML
Multipage Sites.
HTML5 - 2 Forms, Frames, Graphics.
5.00 Apply procedures to organize content by using Dreamweaver. (22%)
Digging in a little deeper
Web Client Side Technologies Raneem Qaddoura
Web Programming and Design
HTML5 Tags By Dr Derek Peacock
HTML CS 4640 Programming Languages for Web Applications
CGS 3066: Web Programming and Design Fall 2019
Presentation transcript:

UNIT II WEB PAGE BASICS & HTML Web 1.0 (Lecture) Content for users to access it brochure web One way traffic WEB 2.0 (Conversion) Users can organize, share & update Two way traffic , Social media (MySpace, Second life) You tube – site provides the platform Key technology to create web 2.0 application RIA (Rich Internet Application) – Desktop application(word processor) Tools in building RIA Abode flex Dojo Silver light

RIA Social Networking Sites First Gen web appltn GUI + Application logic (Web server) Second Gen web appltn GUI & Application Logic has been separated in Web server RIA GUI(browser) + Application logic (server – more CPU cycles) Developed – HTML 5 + Java Script + CSS 3 RSS feeds

COLLABORATION TOOLS 2/more work together to achieve a common goal Non-technological Flipchart post-it notes White board (Interactive White Board) Online collaboration tool Online calendars (Google calendar)

Website vs Webserver Internet vs Intranet Web page – simple document displayed by browser Web site – collection of web pages Web server – host the web site according to the user request Search engine – web site which loads the web page from other web sites Internet – wide network of computers Intranet – specific group of people

HTML BASICS <html> <head> <title> Test page </title> <body> <h1> Internet Programming </h1> <p> This is a sample web page in testing HTML commands </p> </body> </html>

<span> Applying styles to inline elements Small chunk of HTML inside a line Example <p>The <span style="color:green">span tag</span> and the <span style="color:purple">div tag</span> are *OK* man </p>

<div> Large sections The <div> tag defines a division or a section in an HTML document. The <div> tag is used to group block-elements to format them with CSS. Example: <html> <body> <p>This is some text.</p> <div style="color:#0000FF"> <h3>This is a heading in a div element</h3> <p>This is some text in a div element.</p> </div> </body> </html>

<table> <html> <body> <table bgcolor="gold" border="1" align="center" cellpadding="10px" cellspacing="10px" frame="void"> <tr> <th>Course</th> <th>Faculty</th> </tr> <td> IP </td> <td> Prof.M.Shobana </td> <td> PCD </td> <td> Prof.I.Kala </td> </table> </body> </html>

LIST UNORDERED LIST ORDERED LIST <html> <body> <ul type="square"> (disc/circle) <li>PCD</li> <li>UI</li> <li>AI</li> </ul> </body> </html> ORDERED LIST

Forms

Use 4 straight lines and divide the circle into 11 parts

Form with validation

Frames Marquee <html> <body> <marquee width=100 height=100 bgcolor="yellow" direction="up" behavior="slide" scrolldelay="100" hspace=50 vspace=50 loop="3"> <a href="www.google.com">Google</a><br> <a href="www.snsct.org">SNSCT</a> </marquee> </body> </html>

HTML 5.0 (list,table,image,forms,frames) ADDED ELEMENTS Header & Footer nav Section & Article Main & aside Canvas Menu & figure Audio & video Time REMOVED ELEMENTS B Font Frame Center Big Frameset & frame

iframe <html> <iframe src="sampl.html" style="border:none;" name="a"></iframe> <iframe src="pswdvalidate.html"></iframe> <p><a href="http://www.w3schools.com" target="a">W3Schools.com</a></p> </html> table

HTML 5.0 - forms Forms(14 attributes) placeholder autocomplete required pattern list multiple novalidate formnovalidate form formaction formenctype formmethod formtarget

HTML 5.0 - <header> & <footer> <html> <head> <title>sample</title></head> <body> <header> <h1>HTML5 Document Structure Example</h1> <hr> <p>This page should be tried in safari, chrome or Mozila.</p> </header> <P> HELLO</P> <footer> <p>Created by Tutorials Point</p> </footer> </body> </html> Semantic Elements <header> <footer> <article> <section> container for introductory content. Sections heading

HTML 5.0 - <header> Output

HTML 5.0 figure Section (chapter) Article ( forum post/magazine) Main (content) Aside (side bar) –quotes Ex: the sites which I refer <html> <article> <p>Disney<em>the little mermaid</em> was first released - 1989</p> <nav> <ahref="www.google.com">Disney</a> <aside> <p>the movie earned $80 million during its intial release </p> </aside> </article> </html>

101-102=1 4_8 1234567 = 100

It takes 1629 digits to number the pages of a book It takes 1629 digits to number the pages of a book. How many pages are there in the book.