Web Pages Anyone with access to the Internet can post a Web page.

Slides:



Advertisements
Similar presentations
Intro to HTML. HTML HTML = HyperText Markup Language Used to define the content of a webpage HTML is made up of tags and attributes Content.
Advertisements

HTML popo.
HTML: HyperText Markup Language Hello World Welcome to the world!
A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
Introduction to HTML CPS470 Software Engineering Fall 1998.
 2008 Pearson Education, Inc. All rights reserved. 1 Introduction to HTML.
Lecture 12. A Very Brief Introduction to HTML and XHTML Instructor: Jie Yang Department of Computer Science University of Massachusetts Lowell Exploring.
Introduction to HTML academy.zariba.com 1. Lecture Content 1.What is HTML? 2.The HTML Tag 3.Most popular HTML tags 2.
DAT602 Database Application Development Lecture 14 HTML.
HTML HTML stands for "Hyper Text Mark-up Language“. Technically, HTML is not a programming language, but rather a markup language. Used to create web pages.
HTML (HyperText Markup Language)
1 Essential HTML coding By Fadi Safieddine (Week 2)
 HTML stands for Hyper Text Mark-up Language. The coding language used to create documents for the World Wide Web  HTML is composed of tags. HTML tags.
CP2022 Multimedia Internet Communication1 HTML and Hypertext The workings of the web Lecture 7.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
HTML 4 Foundation Level Course HyperText Markup Language Most common language used in creating Web documents. You can use HTML to create cross-platform.
HTML Basic I IST2101. Keep In Mind Programming can be time consuming. Plan ahead!
Going Live with a Basic Web Page Bill Hart-Davidson AIM: billhd30 pfworkshop.
Just Enough HTML How to Create Basic HTML Documents.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
CPSC 203 Introduction to Computers Lab 33 By Jie Gao.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
CPT 499 Internet Skills for Educators Session Ten Class Notes.
 Anyone with access to the Internet can post a Web page.  You can create a Web page with just a text editor.  There are Web page construction tools.
HTML HyperText Markup Language ©Richard L. Goldman July 15, 2003.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Basic HTML. So, what exactly is HTML? HTML stands for: HTML stands for: Hypertext Markup Language. It is a purpose built markup language for the delivery.
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
1999, COMPUTER SCIENCE, BUU Introduction to HTML Seree Chinodom
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
1 Foundation of HTML Web Page Design. 2 Safe Web Fonts: Used by most computers regardless of environment or platform  Times New Roman  Arial  Courier.
HTML AN INTRODUCTION TO WEB PAGE PROGRAMMING. INTRODUCTION TO HTML With HTML you can create your own Web site. HTML stands for Hyper Text Markup Language.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
Week 1: Introduction to HTML and Web Design
HTML.
INTRO TO WEB DEVELOPMENT html
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
Introduction to HTML:.
Extended Learning Module F
CGS 3066: Lecture 2 Web Development and HTML5
Web Development Part 1.
What is HTML? Acronym for: HyperText Markup Language
Computer Fundamentals 2
Elements of HTML Web Design – Sec 3-2
HTML: HyperText Markup Language
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
Elements of HTML Web Design – Sec 3-2
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
HTML Lab 5 10/1/2015.
CSCI-235 Micro-Computers in Science
HTML Formatting.
Elements of HTML Web Design – Sec 3-2
Web Programming– UFCFB Lecture 5
COMPUTING FUNDAMENTALS
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
Computers and Scientific Thinking David Reed, Creighton University
Web Design and Development
Marking Up with XHTML Tags describe how a web page should look
CGS 3066: Lecture 2 Web Development and HTML5
Web Programming Language
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
Introduction to HTML- Basics
Html.
Introduction to HTML.
HTML Basics Mr. Fazzalari.
Johan Ng and Muhammad Hazzry
Web Programming and Design
Marking Up with XHTML Tags describe how a web page should look
Presentation transcript:

Web Pages Anyone with access to the Internet can post a Web page. You can create a Web page with just a text editor. There are Web page construction tools available that allow you to create pages without understanding the underlying machinery.

Hypertext Markup Language HTML Hypertext Markup Language Coding of web pages for a browser to render A Web page is simply a text file written in hypertext markup language (HTML). Markup language is NOT a programming language (what is a programming language ? – later) Consists of TAGS describing contents HTML contains tags specifying text, images, hypertext links Bold, Italics, color of text, Size,…… e.g. In browser, “The Web browser is to view HTML documents” The <b>Web browser</b> is to view <u>HTML</u> documents.

Your First Web Page Open Notepad Type in what is on the right Save as C:\100\test.html Double click on the test.html file Note a title in the web page Note different heading styles <html> <head> <title>My First Web Page </title> </head> <body> Hello World! This is a test. <h1>Heading style 1 </h1> <h2>Heading style 2 </h2> <h3>Heading style 3 </h3> <h4>Heading style 4 </h4> <h5>Heading style 5 </h5> <h6>Heading style 6 </h6> </body> </html>

A HTML file Minimal tags <html> </html> : start and end of a html file <head> </head> : header info such as title <body> </body> : actual display body Regions of text <div></div> <p> </p> <span></span> Specific Attributes <br /> --- line break <i> </i> --- italicize <b></b> or <strong></strong> -- bold <sup></sup> and <sub></sub> -- super or subscript <big></big> and <small></small> --- font size <body style=“background-color:lavender”>

Style Spec Style=“text-align:right” Style=“font-family:Arial” Basic font types Sans-serif: Plain --- arial and helvetica Serif: embellishments called serifs at tips of letters --- times and times new roman Monspaced: characters with equal widths --- courier and courier new From a list, the first available font will be used Face=“airal, helvetica, sans-serif” Style=“font-size:12pt” Style=“font_weight:bold” Style=“color:blue”

Hyperlink Link to another document <a href=hello.html>Hello World</a> Link to wikipedia <a href=“http://en.wikipedia.org/wiki/Ernest_Hemingway> To Hemingway </a> Link to an email address <a href=mailto:kim@cs.uml.edu> Email me </a> Google map <a href=http://maps.google.com/maps?q=One+University+Dr.,+Lowell,+MA>view map </a> Image <img src=“flag_us.jpg” align=left>

<table> </table> <tr> </tr> --- table row <table border="1"> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td>row 2, cell 2</td> </tr> </table> Table <table> </table> <tr> </tr> --- table row <td> </td> --- table data List <ol> </ol> -- ordered list <ul> </ul> -- unordered <dl></dl> -- definition <ul> <li>Coffee</li> <li>Milk</li> </ul>

WYSIWYG What is the objective ? Plan for web pages Tools A free Web page editor named Kompozer www.kompozer.net Other similar software: Nvu http://www.net2.com/nvu/download.html Download kompozer to C:\100 and extract Wix.com web.com webs.com Wordpress.com Tutorial: www.w3schools.com