CSE 102 Introduction to Web Design and Programming

Slides:



Advertisements
Similar presentations
Anatomy of a Web Page. Parts of a Web Page Title Bar Navigation Tool Bar Location Bar Header Graphic/Image Text Horizontal Rule Links.
Advertisements

XHTML Week Two Web Design. 2 What is XHTML? XHTML is the current standard for HTML Newest generation of HTML (post-HTML 4) but has many new features which.
HTML. The World Wide Web Protocols Addresses HTML.
Chapter 4 HTML. Objectives Explain how HTML/XHTML are used and describe the difference between them Interpret HTML code Explain how HTML Forms are used.
HTML (HyperText Markup Language)
Chapter 1 XHTML: Part I The Web Warrior Guide to Web Design Technologies.
 2002 Prentice Hall, Inc. All rights reserved.2 Chapter 2 — Introduction to HyperText Markup Language 4: Part I Outline 2.1Introduction 2.2Markup Languages.
XHTML Presented by Kelly(Geun-young) Yim. Learning Objectives  List the difference between XHTML and HTML  Create a valid, well-formed XHTML document.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
CIS 228 The Internet 9/20/11 XHTML 1.0. “Quirks” Mode Today, all browsers support standards Compliant pages are displayed similarly There are multiple.
Tutorial #1 Using HTML to Create Web Pages. HTML, XHTML, and CSS HTML – HyperText Markup Language The tags the browser uses to define the content of the.
Week 1: Introduction to HTML and Web Design
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
What is XHTML? XHTML stands for Extensible Hypertext Markup Language
INTRO TO WEB DEVELOPMENT html
HTML Basics.
Introduction to HTML:.
Internet Exploration: HTML Basics
CIS 228 The Internet 9/20/11 XHTML 1.0.
CSE 102 Introduction to Web Design and Programming
CSE 102 Introduction to Web Design and Programming
HyperText Markup Language
Elements of HTML Web Design – Sec 3-2
Elements of HTML Web Design – Sec 3-2
Creating a Web Page.
HTML Lab 5 10/1/2015.
HTML.
Intro to HTML Mr. Singh.
Web Development & Design Foundations with HTML5 8th Edition
Text Elements.
Chapter 1: Introduction to XHTML (part 1)
XHTML 1 by Carsomyr.
Internet Exploration: HTML Basics
Elements of HTML Web Design – Sec 3-2
Chapter 4 - Introduction to XHTML: Part 1
CSE 102 Introduction to Web Design and Programming
COMPUTING FUNDAMENTALS
HTML.
Text Elements.
HTML A brief introduction HTML.
Introduction There are several good reasons for taking CS142: Web Applications: You will learn a variety of interesting concepts. It may inspire you to.
5.2.3 Be able to use HTML and CSS to construct web pages
HTML HYPERTEXT MARKUP LANGUAGE.
Basic HTML and Embed Codes
CS 142 Lecture Notes: Rails Controllers and Views
Web Design and Development
Instructor: Charles Moen
Introduction to Web & HTML
Marking Up with XHTML Tags describe how a web page should look
Text Elements.
Introduction to HTML- Basics
Pertemuan 1b
HTML Structure.
Web Application Development
Basic HTML Workshop.
Marking Up with XHTML Tags describe how a web page should look
Text Elements.
Pertemuan 1 Desain web Pertemuan 1
Marking Up with XHTML Tags describe how a web page should look
Johan Ng and Muhammad Hazzry
XHTML 7-May-19.
Lesson 2: HTML5 Coding.
XHTML Basics.
XHTML 29-May-19.
محمد احمدی نیا XHTML محمد احمدی نیا
Creating your website and learning HTML
Text Elements.
Marking Up with XHTML Tags describe how a web page should look
Creating Web Documents
Presentation transcript:

CSE 102 Introduction to Web Design and Programming HTML Basics

HTML Markup Language, not programming language Web Documents use HTML format Enables you to structure and organize text, graphics, pictures, sound, video, etc … Supports headings, paragraphs lists, tables, links, images, forms, frames, etc … HTML versions from 2.01 – 4.01 (most recent) Replaced by XHTML 1.0 An HTML document has 2 components Markup tags (for page organization/formatting) Content

Exercise <? xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>My First Web Page </title> </head> <body style="background-color: cyan"> <p>Hello everyone!</p> <p>My Name is (put your name here) and today is (put in the date). HTML is wack! XHTML is most certainly not wack! HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA HA!</p> </body> </html>

HTML Elements More than 90 types Top-level elements html, head, body Head elements title, link, meta, base, script Block-level elements h1-h6, p, ul, ol, li, table, etc … Inline elements a, br, em, hr, img, strong, etc … HTML tutorial - http://www.w3schools.com/html/default.asp

Add some block-level elements inside body, not inside any other tags <h1>Yankees</h1> <h2>are</h2> <h3>great</h3> <h4>Red Sox</h4> <h5>are</h5> <h6>smelly</h6> <p>My unordered list of Real World Cities:</p> <ul> <li>San Diego</li> <li>San Francisco</li> <li>Paris</li> </ul> <p>My ordered list of Real World Cities</p> <ol> <li>New York</li> <li>Los Angeles</li> </ol>

Add some inline elements somewhere inside body, not inside any other tags <p>I'm taking <a href="http://www.cs.sunysb.edu/~cse102">CSE 102</a><br /><br /><br /> this semester.</p> <hr /> <p>My friend in CSE102 class is <em>Name </em>. Here's a picture of <strong>him</strong>:</p> <img src="friend.jpg" /> Now, go on the Web and find a jpg Save it to the same directory as your Web page and name it friend.jpg Then, find jpg files for three cities Save it to the same directory as your Web page and name it as you wish Add <img src= "CityName.jpg" /> below the city names. For example: <img src="newyork.jpg" /> Post this document to your Sparky Web account such that I may view it, make sure you include the pictures.