Introduction to HTML.

Slides:



Advertisements
Similar presentations
Introduction to HTML
Advertisements

Anatomy of a Web Page. Parts of a Web Page Title Bar Navigation Tool Bar Location Bar Header Graphic/Image Text Horizontal Rule Links.
Introduction to HTML L.C.M Center Workshop Fall 2008.
A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
How Tags are used to form your Web Page
INTRO TO THE WWW. What is the World Wide Web? The World Wide Web (WWW) is most often called the Web. The World Wide Web (WWW) is most often called the.
Introduction to HTML CPS470 Software Engineering Fall 1998.
Creating a Web Page HyperText Markup Language. HTML Documents  Created using any text editor  Notepad  Vi, Pico, or Emacs  If using word-processor,
Tutorial 1: Getting Started with HTML5
CS117 Introduction to Computer Science II Lecture 2 Creating an HTML Document Instructor: Li Ma Office: NBC 126 Phone: (713)
Using HTML to Create a Basic Web Page… By Josh Gallagan.
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.
Html Basic Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
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.
Just Enough HTML How to Create Basic HTML Documents.
HTML Hyper Text Markup Language. What is an HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Introduction to HTML. Slide 1 Hard-Coding What is hard-coding? –Creating the page in a text editor just using HTML A Web designer should know how to hard-
IS1811 Multimedia Development for Internet Applications Lecture 4: Introduction to HTML Rob Gleasure
Introduction to HTML College of Umm A-Qura University Fall 2013.
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.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
Web Page Design Introduction. The ________________ is a large collection of pages stored on computers, or ______________ around the world. Hypertext ________.
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.
HTML BTEC National in Computing Section5. Create Information “HTML: defining HTML, discussing HTML uses and demonstrating HTML basics, HTML structure…..
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
This shows CIS17 and the first day introduction..
Hypertext Markup Language.  Developed by Tim Berners-Lee in 1990  Stands for HyperText Markup Languange  A format that tells a computer how to display.
1 2/16/05CS120 The Information Era Chapter 4 Basic Web Page Construction TOPICS: Intro to HTML and Basic Web Page Design.
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.
Introduction lab1. Suzanne J. Sultan 2 What is HTML? The definition of HTML is Hyper Text Markup Language. HTML is a computer language devised to allow.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags 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.
HTML Structure & syntax
Getting Started – Basic Page Structure
Intro to HTML CS 1150 Spring 2017.
Introduction to HTML.
Prepared by Dr. Maher Abuhamdeh 2014/2015 First semester
Web Basics: HTML/CSS/JavaScript What are they?
CS7026: Authoring for Digital Media HTML Authoring
Intro to HTML CS 1150 Fall 2016.
Transcriptions Studio Workshop Fall 2006
XHTML/CSS Week 1.
HyperText Markup Language
HTML Lab 5 10/1/2015.
Uppingham Community College
WEB PAGES: CREATING AND MAINTAINING **
Basic HTML PowerPoint How Hyper Text Markup Language Works
INSTRUCTIONS This presentation was designed to first be viewed in class with the instructor. Students may then view it on their workstations while trying.
Lecture 8. HTML. Author: Aleksey Semyonov
Chapter 1: Introduction to XHTML (part 1)
Introduction to XHTML.
Hyper text markup Language
Basic HTML PowerPoint How Hyper Text Markup Language Works
HTML HYPERTEXT MARKUP LANGUAGE.
HTML 12/27/2018.
WEB PUBLISHING 2/19/2019 JIPRA ICT DEPARTMENT
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
Web Application Development
WEB & HTML Background Info.
An Introduction to HTML Pages
Introduction to Web Application Design
HTML Structure & syntax
Creating your website and learning HTML
HTML Introduction.
Presentation transcript:

Introduction to HTML

What is HTML? Hyper Text Markup Language Web authoring software language Specifically created to make World Wide Web pages Created by Tim Berners-Lee in 1993 from SGML

What is HTML? HTML files Text files Contain mark-up tags Tags direct how page is to be displayed by browser Can be created from a simple text editor File extension “.htm” or “.html”

Creating an HTML file Notepad or Wordpad (PC) or SimpleText (Mac) First tag: <html> Indicates that you are starting an HTML document Last tag: </html> Indicates that you are ending an HTML document *Note* the open & close structure to HTML Fictional example: <sleep> and </sleep> Save file as “index.html” This is a typical default title for home pages Windows may seem to prefer “.htm” but “.html” will also work just fine.

Index.html Example <html> </html>

Creating an HTML file (cont.) Header information <head> to begin, and </head> to end Gives information about the page that is not displayed on the page itself Page Title <title> to begin, and </title> to end Example: <title>Transcriptions Studio</title> *Note* that there are no spaces between “<title> and “Transcriptions”, nor between “Studio” and “</title> Challenge: How would you place title information in your page’s header information?

Challenge answer: <html> <head> <title>Transcriptions Studio</title> </head> </html>

Creating Text in HTML Body Tags Text headings Paragraphs <body> and </body> *Note* that all text that appears on the page must be encapsulated within the body tags Text headings <h1> and </h1> There are six defined heading sizes <h1> (largest) through <h6> (smallest) Paragraphs <p> and </p>

Text Example <html> <header> <title>Transcriptions Studio</title> </header> <body> <h1>This is a big heading!</h1> <h2>This is a smaller heading</h2> <p>This is an example of a paragraph.</p> </body> </html>

Text Example (cont.) This is a big heading! This is a smaller heading! This is an example of a paragraph.

HTML Organization Spacing Comments Spacing organizes your work! Spacing makes your files easy to read! Spacing makes no functional difference to your web browser Comments Comments are notes in your HTML file Comments make no functional difference to your web browser “<!--” begins a comment, and “ -->” ends it

Comments Example <html> <header> <title>Transcriptions Studio</title> </header> <body> <h1>This is a big header!</h1> <h2>This is a smaller heading</h2> <p>This is an example of a paragraph.</p> </body> </html> <!-- This is an example of a comment.-->