High Points CSCI 1210.

Slides:



Advertisements
Similar presentations
HTML Basics 1450 Technology Seminar Copyright 2003, Matthew Hottell.
Advertisements

1 Programming the Web: HTML Basics Computing Capilano College.
Web Development & Design Foundations with XHTML
HTML. The World Wide Web Protocols Addresses HTML.
4.01 How Web Pages Work.
HTML Your Friend or Foe? and a little bit from Lazar.
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.
Tutorial 1 Developing a Basic Web Page
IST 221 Internet Concepts and Applications Internet, WWW and HTML 1.
HTML syntax By Ana Drinceanu. Definition: Syntax refers to the spelling and grammar of a programming language. Computers are inflexible machines that.
Computer Science 103 Chapter 2 HyperText Markup Language (HTML)
Creating your website Using Plain HTML. What is HTML? ► Web pages are authored in HyperText Markup Language (HTML) ► Plain text is marked up with tags,
Chapter 14 Introduction to HTML
UNDERSTANDING WEB AND WEB PROJECT PLANNING AND DESIGNING AND EFFECTIVE WEBSITE Garni Dadaian.
1 Introduction to Web Development. Web Basics The Web consists of computers on the Internet connected to each other in a specific way Used in all levels.
Chapter 1 Internet & Web Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D. 1.
Chapter 1 Internet & Web Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D. Revised 1/12/2015 by William Pegram 1.
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
Tutorial #2 Creating Links. Tutorial #1 Review Basic Page (DOCTYPE, HTML, Head, Title, Body) Tags Structure( ),,,,,, Nested Tags content Tag Attributes.
HTML history, Tags, Element. HTML: HyperText Markup Language Hello World Welcome to the world!
Introduction to HTML. What is a HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup tags  The.
INTRODUCTION. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language,
Copyright 2007, Information Builders. Slide 1 Understanding Basic HTML Amanda Regan Technical Director June, 2008.
1 John Magee 9 November 2012 CS120 Lecture 17: The World Wide Web and HTML Web Publishing.
CA Professional Web Site Development Class 2: Anatomy of a Web Site and Web Page & Intro to HTML.
Chapter 1 Internet & Web Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D. 1.
Web Development & Design Foundations with XHTML Chapter 2 HTML/XHTML Basics.
Web Design (1) Terminology. Coding ‘languages’ (1) HTML - Hypertext Markup Language - describes the content of a web page CSS - Cascading Style Sheets.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 2 Key Concepts 1 Copyright © Terry Felke-Morris.
High Points CSCI 1710 Fall The Internet Packet switching Arpanet Cold War.
IS-907 Java EE World Wide Web - Overview. World Wide Web - History Tim Berners-Lee, CERN, 1990 Enable researchers to share information: Remote Access.
XP Review 1 New Perspectives on JavaScript, Comprehensive1 Introducing HTML and XHTML Creating Web Pages with HTML.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
Web Design – Week 2 Introduction to website basics Website basics: How the Web Works Client / server architecture Packet switching URL components.
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.
HTML Tutorial. What is HTML HTML is a markup language for describing web documents (web pages) HTML documents are described by HTML tags Each HTML tag.
World Wide Web. The World Wide Web is a system of interlinked hypertext documents accessed via the Internet The World Wide Web is a system of interlinked.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
Finally getting to html and CSS… Tim Berners-Lee, the writer of the software program that makes him the inventor of the WWW, defines the Internet as a.
The Internet Day 4, 9/8/11 Getting on the Internet
4.01 How Web Pages Work.
Basic concepts of web design
4.01 How Web Pages Work.
Introduction to HTML.
Web Basics: HTML/CSS/JavaScript What are they?
4.01 How Web Pages Work.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
CISC103 Web Development Basics: Web site:
Introducing XHTML: Module A: Web Design Basics
Introducing XHTML: Module A: Web Design Basics
Inserting and Working with Images
Sec (4.3) The World Wide Web.
CASE STUDY -HTML,URLs,HTTP
XHTML 1 by Carsomyr.
High Points CSCI 1710 Spring 2016.
CISC103 Web Development Basics: Web site:
High Points CSCI 1710 Fall 2017.
HTML 12/27/2018.
Secure Web Programming
Document Structure & HTML
Introduction to World Wide Web
CS3220 Web and Internet Programming HTML and XML Basics
HyperText Markup Language
HTML Basics Mr. Fazzalari.
Unit-3.
Digging in a little deeper
4.01 How Web Pages Work.
4.01 How Web Pages Work.
Basics of Web Design Chapter 1 Internet & Web Basics Key Concepts
Presentation transcript:

High Points CSCI 1210

The Internet Packet switching Arpanet Cold War

The Web Part of the Internet Tim Berners-Lee HTML URI HTTP

The Web Protocols HTTP / HTTPS FTP Internet Protocol (IP) tcp/ip

The Web DNS Uniform Resource Locator (URL) Domain names Top Level Domains Uniform Resource Locator (URL)

The Web Hypertext Server Client HTML - Hypertext Markup Language

Hypertext Markup Language (HTML) “Language of the Web” Plain text Markup Syntax -- <tag>…</tag> or <tag>

HTML Tags Block Level/Inline Container/Standalone Nesting Last on / first off

HTML Tags Attributes Tags vs Elements Syntax -- <tag attribute=“value”>…</tag> OR <tag attribute=“value”> Tags vs Elements

HTML Document Structure <!DOCTYPE html> <html> <head> </head> <body> </body> </html>

HTML Tags Head element Meta-data Links Styles Scripts Comment block

HTML Tags Body Displayed content Comments

HTML Tags Comments Syntax -- <!-- Comment goes here --> Best Practice, particularly for more complex code Code writer may not be same person who has to maintain it later Not secure

HTML Special Characters Needed for literal display of characters that have special meaning to web browsers Examples -- < > & © “ Syntax -- < > & © "

HTML Lists Ordered Unordered Definition List Items Nesting

HTML Links Connect to other resources Internal / External Relative / Absolute Syntax -- <a href=“URL”>Link Text</a> Paths In-page

HTML Images Inline standalone Syntax -- <img src=“image.jpg” alt=“alternative text” /> Must have alt attribute Formats GIF JPG PNG

HTML Images - Captions Syntax <figure> <img…> <figcaption>…</figcaption> </figure> Optimization Link

Web Design ‘Usefulness’ How users judge a website Can be used Achieves a desired goal How users judge a website Content Usability User-centered Web Development Life Cycle

Web Development Life Cycle Define mission & target user population Collect user requirements Create & modify conceptual design Create & modify physical design - Coding Testing Implement & market Evaluate & improve

WDLC - Mission Statement Every site should have one Different from organizational mission statement What site is intended to accomplish List key parts of site