Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.

Slides:



Advertisements
Similar presentations
Introduction to HTML
Advertisements

HTML I. HTML Hypertext mark-up language. Uses tags to identify elements of a page so that a browser such as Internet explorer can render the page on a.
HTML Basics Customizing your site using the basics of HTML.
HTML. The World Wide Web Protocols Addresses HTML.
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,
How Tags are used to form your Web Page
Hypertext Markup Language. Platform: - Independent  This means it can be interpreted on any computer regardless of the hardware or operating system.
Introduction to HTML CPS470 Software Engineering Fall 1998.
Web Page Development Identify elements of a Web Page Start Notepad
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.
COMPUTERS AND INFORMATION SYSTEMS HTML. How the Web Works To access a web site  Enter its address (URL) in the address box of your browser 
 Definition of HTML Definition of HTML  Tags in HTML Tags in HTML  Creation of HTML document Creation of HTML document  Structure of HTML Structure.
Tutorial 1: Getting Started with HTML5
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.
HTML. WHAT IS HTML HTML stands for Hyper Text Markup Language HTML is not a programming language, it is a markup language A markup language is a set of.
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Extended Learning Module F Building a Web Page with HTML.
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.
XP 1 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to HTML.
Computing Theory: HTML Year 11. Lesson Objective You will: o Be able to define what HTML is - ALL o Be able to write HTML code to create your own web.
Web Programming Basics of HTML. HTML stands for Hyper Text Mark-up Language A mark-up language is different than those that you have learned before in.
Getting Started with HTML Please use speaker notes for additional information!
15.1 Fundamentals of HTML.
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.
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.
Basic HTML PowerPoint How Hyper Text Markup Language Works
HTML Codes Miss B.
Introduction to HTML Vincci Kwong Reference/Instruction Librarian.
HTML: Hyptertext Markup Language Doman’s Sections.
CPSC 203 Introduction to Computers Lab 33 By Jie Gao.
McLean HIGHER COMPUTER NETWORKING Lesson 5 HTML Description of HTML web page Creating a simple HTML web page.
HTML Basics. HTML Introduction Stands for HyperText Markup Language. HTML files are plain text files with mark ups. Some characteristics of HTML: –No.
Introducing the World Wide Web Internet- a structure made up of millions of interconnected computers whose users communicate with each other and share.
15.1 Fundamentals of HTML DeKalb County School System.
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.
Creating Your First Web Page – Topic: Creating a wiki, blog, image blog and podcast Click Arrow - Next Slide 1.
HTML Basic. What is HTML HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it.
15.1 Fundamentals of HTML 2 assignments: 1st—complete the worksheet. 2nd—create your first HTML web page following the directions in this PowerPoint where.
Web programming Part 1: HTML 由 NordriDesign 提供
Introduction to HTML UWWD. Agenda What do you need? What do you need? What are HTML, CSS, and tags? What are HTML, CSS, and tags? html, head, and body.
This shows CIS17 and the first day introduction..
Introduction to HTML Simple facts yet crucial to beginning of study in fundamentals of web page design!
Behind every site is a mix of special languages that your web browser understands The main way of describing any website is HTML HTML stands for Hyper.
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.
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 HTML Page 1. First Open Windows Notepad to type your HTML code 2.
HTML And the Internet. HTML and the Internet ► HTML: HyperText Markup Language  Language in which all pages on the web are written  Not Really a Programming.
HTML 17 HTML 17. HTML 17 HTML is the language for making webpages Hypertext Markup Language You need to know the basics Questions about HTML are common.
Objectives At the end of this session students will: Define the following terms in two sentences or less Website Web page Browser Html URL Hyperlink Explain.
Web Basics: HTML/CSS/JavaScript What are they?
Internet Exploration: HTML Basics
Elements of HTML Web Design – Sec 3-2
HTML GUIDE Press F5 and then
INSTRUCTIONS This presentation was designed to first be viewed in class with the instructor. Students may then view it on their workstations while trying.
Internet Exploration: HTML Basics
Elements of HTML Web Design – Sec 3-2
My web site..
Practice: first_document.html
Web Design and Development
HTML HYPERTEXT MARKUP LANGUAGE.
Introduction to HTML Simple facts yet crucial to beginning of study in fundamentals of web page design!
Intro to Web Development Links
Creating a web page Auxiliary Lab Lecture
Creating a web page.
WJEC GCSE Computer Science
HTTP and HTML HTML HTTP HTTP – Standardize the packaging
Presentation transcript:

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 tags 3. Create a brief web page

HTML HTML (hypertext markup language) is the language that is used to create pages for the web. You can view the source for a web page by clicking View -> Source

HTML Tags HTML tags guide how the web page looks. There are beginning and ending tags

HTML Tags TagDescription … Begin and End an HTML document … The header section of the document, which contains information about the page. This is not displayed to the user. Contains meta tags. … Define a document title. This element is required in every HTML document. … Defines the body section of the document, which contains the content to be displayed on the page. … Marks text to be centered … Creates a paragraph, perhaps the most common block level element. … … Section headings at different levels. … and … Creates a list OL is numbered list and UL is a bullet list … Creates a list item in ordered and unordered lists. Creates a link to another site

Creating a Web Page Open Notepad++ and enter this text: These are Ones When done save your file as myfirsthtml.html

Creating a Web Page Add this text: When done save your file as myfirsthtml.html These are Ones

Creating a Web Page Save the file in your My Documents directory as myfirsthtml.html Open IE Explorer Click on File -> Open Click on Browse Find your file and click Open Answer OK to the question and you should see your webpage.

Summary HTML is the language of the web HTML tags control how pages are displayed. Each HTML tag has a beginning and an ending tag

Rest of Today Complete your web page and show me the results on the screen. Complete the day with Mavis Beacon…