Creating a web page.

Slides:



Advertisements
Similar presentations
HTML. The World Wide Web Protocols Addresses HTML.
Advertisements

Creating a Web Page HTML: The Language of the WEB.
Hyper Text Markup Language.  HTML is a language for describing web pages.  HTML stands for Hyper Text Markup Language  HTML is not a programming language,
A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
Introducing HTML Skills: create simple Web pages
Introduction to HTML CPS470 Software Engineering Fall 1998.
Made by: Dan Ye. Introduction Basic Last Page ☆ HTML stands for Hyper Text Markup Language; ☆ HTML is not a programming language, it is a markup language;
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
COMP101 – Exploring Multimedia and Internet Computing LA2 (Thu 14:00 – 16:50) TA: Jackie Lo.
Creating a web page Lab Assignment Goal Create a simple web page Create the file: inclass.txt in your www directory. Do you remember how to get to your.
 Definition of HTML Definition of HTML  Tags in HTML Tags in HTML  Creation of HTML document Creation of HTML document  Structure of HTML Structure.
Introduction to HTML academy.zariba.com 1. Lecture Content 1.What is HTML? 2.The HTML Tag 3.Most popular HTML tags 2.
Slide 1 Today you will: think about criteria for judging a website understand that an effective website will match the needs and interests of users use.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
All Web pages are written with some form of HTML (HyperText Markup Language). HTML documents are saved as Text Only files so virtually any computer can.
XP 1 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to HTML.
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
All you ever needed to know…and more!. H.T.M.L. HyperText Mark-up Language Web’s programming language All web browsers Set of instructions Written with.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Hypertext Mark-Up Language Web Page Creation HTML.
HTML Codes Miss B.
HTML,DHTML & Javascript/Session1/1 of 39 Introduction and Basic Tags Session 1 of Using HTML, DHTML & JavaScript.
Introduction to HTML Wah Yan College (Hong Kong) Mr. Li C.P.
Basic HTML Hyper text markup Language. Lesson Overview  In this lesson, you will learn to:  Write HTML code using a text editor application such as.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
CPSC 203 Introduction to Computers Lab 33 By Jie Gao.
Chapter 23 - World Wide Web Documents (HTML) Introduction Display Hardware Varies A Browser Translates And Displays A Web Document A Consequence Of The.
McLean HIGHER COMPUTER NETWORKING Lesson 5 HTML Description of HTML web page Creating a simple HTML web page.
Introducing the World Wide Web Internet- a structure made up of millions of interconnected computers whose users communicate with each other and share.
CPSC 203 Introduction to Computers Lab 66 By Jie Gao.
Web Design. How do web pages work? Webpages are written in a code called HTML. Programs like Internet Explorer read the code, and then show it as a web.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
The Teacher Computing HTML HyperText Markup Language.
HTML HyperText Markup Language. Text Files An array of bytes stored on disk Each element of the array is a text character A text editor is a user program.
Web programming Part 1: HTML 由 NordriDesign 提供
This shows CIS17 and the first day introduction..
HTML: Hypertext Markup Language The language to make web pages 0.
CPSC 203 Introduction to Computers Lab 23 By Jie Gao.
HTML-I Basic HTML Elements. HTML (Hyper Text Markup Language) HTML is a document layout and hyperlink- specification language. i.e. a language used to.
Using HTML. Glogger Glogger is like you own personal web page, you can add… Pictures Text Videos Music, etc… Modify and adjust anything you want Glogger.
Basic Steps to create a Website using HTML5. Hypertext Markup Language.
HTML Basic Structure. Page Title My First Heading My first paragraph.
Creating Your 1 st Web Page. Tags Refers to anything between on a webpage Most appear in pairs surrounding content Some appear as empty tags (no closing.
Basic Web Page Design. Text book: HTML, XHTML, and CSS: Visual QuickStart Guide, Sixth Edition written by Elizabeth Castro. Software: Adobe® Dreamweaver®
Project 02 Creating and Editing a Web Page Concept Map of Unit Creating and Editing a Web Page Key Learning Understand the elements to create a web page.
Prepared by Sana Maqbool. Objectives After completing this lesson, the you will be able to… Understand about web authoring Name and explain the uses of.
Web Basics: HTML/CSS/JavaScript What are they?
Introduction to HTML:.
HTML – The COMPUTING UNLOCKED GUIDE
Internet Exploration: HTML Basics
XHTML/CSS Week 1.
Elements of HTML Web Design – Sec 3-2
HTML Formatting.
Internet Exploration: HTML Basics
Elements of HTML Web Design – Sec 3-2
Essentials of HTML.
Essentials of HTML.
Web Design and Development
HTML HYPERTEXT MARKUP LANGUAGE.
Web Programming Language
Creating a web page Auxiliary Lab Lecture
What is HTML?.
Introduction to HTML5.
HTML – The COMPUTING UNLOCKED GUIDE
HyperText Markup Language
The Most Basic HTML Page
WJEC GCSE Computer Science
Hypertext Markup Language
HTTP and HTML HTML HTTP HTTP – Standardize the packaging
Presentation transcript:

Creating a web page

ADVICE!!! Use a simple editor! Notepad is a simple editor Microsoft Word is NOT a simple editor

Hypertext Markup Language html Beginning tag and matching end tag to start a web page.

Hypertext Markup Language html <head> </head> <body> </body> </html> A web page has a head and a body and note that both sections have beginning and end tags.

Hypertext Markup Language html <head> </head> <body> This is a list of my favorite movies. </body> </html> Type your text!

Hypertext Markup Language html <head> <title> My Favorite Movies </title> </head> <body> This is a list of my favorite movies. </body> </html> Create a title!

Hypertext Markup Language html <head> <title> My Favorite Movies </title> </head> <body> This is a list of my favorite movies. <ul> </ul> </body> </html> Create an unordered list

Create list item <html> <head> <title> My Favorite Movies </title> </head> <body> This is a list of my favorite movies. <ul> <li>What’s Up Doc?</li> <li>Shrek</li> <li>The Fisher King</li> </ul> </body> </html> Create list item

Hypertext Markup Language html <ol>…</ol> creates an ordered list <p>…</p> paragraph tags <h1>…</h1> header 1 <h2>…</h2> header 2 <h6>…</h6> header 6 <strong>…</strong> strong emphasis See: htmldog.com for more tags and advice on creating web pages.

View Web Pages Look at web pages Most web page browsers allow users to: “view page source” For example look at the source of the web page for the first homework: hw1 Look for these tags in the “hw1” page: <html> <head> <body> Find an unordered list and a list item.