Basic HTML Hyper text markup Language. Re-cap  … - The tag tells the browser that this is an HTML document The html element is the outermost element.

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.
HTML Lesson 4 Hyper Text Markup Language. Assignment Part 3  Save your last html file as “FirstName3.htm”  Set the title as “FirstName LastName Third.
Html: getting started HTML is hyper text markup language. It is what web browsers look at on the Internet. HTML documents should be created in a simple.
Hypertext Markup Language. Platform: - Independent  This means it can be interpreted on any computer regardless of the hardware or operating system.
Computer Science 1611 Internet & Web Creating Webpages Hypertext and the HTML Markup Language.
Web Page Development Identify elements of a Web Page Start Notepad
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
HTML Introduction HTML
Glencoe Digital Communication Tools Create a Web Page with HTML Chapter Contents Lesson 4.1Lesson 4.1 Get Started with HTML (85) Lesson 4.2Lesson 4.2 Format.
Tags through Forms. This element is required for all HTML pages It must be at the top of every page of every website We’ll see later on why it is important.
 Definition of HTML Definition of HTML  Tags in HTML Tags in HTML  Creation of HTML document Creation of HTML document  Structure of HTML Structure.
Basic HTML The Magic Of Web Pages. Create an HTML folder  Make a folder in your H drive and name it “HTML”. We will save EVERYTHING for this unit here.
Basics of HTML Shashanka Rao. Learning Objectives 1. HTML Overview 2. Head, Body, Title and Meta Elements 3.Heading, Paragraph Elements and Special Characters.
HTML. We’ll learn … What HTML is What tags are What a basic web page looks like What 3 HTML tags are required What HTML comments look like How to title.
HTML Links and Anchors.
Copyright © Texas Education Agency, All rights reserved. 1 Web Technologies Website Development with Dreamweaver.
Creating Tables in a Web Site
Web Design Using HTML Codes. WHAT DO I NEED TO BEGIN DESIGNING A HOME PAGE? 1.YOU NEED A FOLDER (also called a DIRECTORY) You should set up a folder or.
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.
Web Technologies Website Development Trade & Industrial Education
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
1 Essential HTML coding By Fadi Safieddine (Week 2)
Images, Hyperlinks, and Sound Module 2: XHTML Basics LESSON 3.
Website Development with Dreamweaver
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.
Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create.
Html Basic Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
What is Markup and Markup Languages? What is HTML? A Basic HTML Document Basic HTML Tags Tag Attributes and Text Formatting Tags Insert Hyperlinks Add.
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.
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.
1.  Use the anchor element to link from page to page  Configure absolute, relative, and hyperlinks  Configure relative hyperlinks to web pages.
IS1811 Multimedia Development for Internet Applications Lecture 4: Introduction to HTML Rob Gleasure
Enhancing Your Web Site—Adding Links Web Page **YOU MUST HAVE COMPLETED THE 1ST 3 WEB PAGES BEFORE YOU CAN DO THIS ONE. **YOU SHOULD HAVE COMPLETED THE.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
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: Hyptertext Markup Language Doman’s Sections.
Week 1 – Beginners Content McAfee & Big Fish Games CoderDojo.
LEARNING HTML PowerPoint #1 Cyrus Saadat, Webmaster.
Chapter 2 Web Page Design Mr. Gironda. Elements of a Web Page These are things that most web pages use.
HTML file format  Lesson Objective: Understanding HTML and how it is used to create web pages.  Learning Outcome:  Create a HTML page by interpreting.
Creating Links. The Anchor Element: The anchor tag can be used in three different ways: 1.External link – to link to a web page outside your own website.
HTML BTEC National in Computing Section5. Create Information “HTML: defining HTML, discussing HTML uses and demonstrating HTML basics, HTML structure…..
HTML GUIDE Press F5 and then Click on the links on the left to get to the section you want Section 1: Getting Started Section 2: Moving Banner Section.
Creating Your First Web Page – Topic: Creating a wiki, blog, image blog and podcast Click Arrow - Next Slide 1.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
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.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Building a Web Page. Create A New Folder  Right click on the desktop and select New / Folder  Name the folder playpen.
Creating and Editing a Web Page
Links and Images. Links HTML uses a hyperlink to link to another document on the Web A hyperlink can be either text or a picture Links are created with.
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.
HTML Overview.  Students will learn: How HTML tagging works How browsers display tagged documents How an HTML document is structured.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
1 Your Web Page title body of Web page main heading H2 heading bulleted list paragraph.
Creating Web Pages with Links, Images, and Embedded Style Sheets
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place Programming language.
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 is the language that allows text and graphics to be displayed as Web pages. It is a set of special codes, called tags, that tells a browser application.
Online PD Basic HTML The Magic Of Web Pages
HTML Basics.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Hyper text markup Language
Intro to Web Development Links
Enhancing Your Web Site—Adding Links Web Page
Hyper text markup Language
Presentation transcript:

Basic HTML Hyper text markup Language

Re-cap  … - The tag tells the browser that this is an HTML document The html element is the outermost element in HTML documents. The html element is also known as the root element.

Re-cap  … - Contains information about the page.  …. - Displays the title at the top of the window. Always goes inside the element  …. - Contains the body of page

Re-cap  The to tags are used to define HTML headings. defines the most important heading. defines the least important heading  …. - It defines a paragraph. The element automatically creates some space before and after itself  - inserts a single line break

Lesson Overview  In this lesson, you will learn to:  Create Hyperlinks to connect web pages.  Format text within a Web page.  Creates tags with attributes.  Text alignment and horizontal ruler

What is the most important part of a web page

Hyperlinks

Where are we going with class assignments?

Class assignment 5 HTML tag line breaks, paragraphs and header

 Open notepad  Using the header paragraph and break html tags that you have learned, create the web page shown next  Save the code that you just created as “charles.html” in the folder “Web design\class assignments”  Access the file and open it.  Debugging tip: save html file in notepad. Use refresh (F5) button on your browser to see changes in code.

Hyperlinks

Class assignment 6 HTML hyperlinks

 Open file “twocities.html” in the folder “Web design\class assignments” in notepad.  Make sure that “Charles.html” is in the same folder as “twocities.html”

Modify file “twocities.html” as highlighted below A Tale of Two Cities Charles Dickens

 Save file “twocities.html” in the folder “Web design\class assignments” in notepad.  Make sure that “Charles.html” is in the same folder as “twocities.html”  Open “twocities.html” in web browser.  Click on hyperlink ‘Charles Dickens’

Hyperlink tag  The tag defines an anchor. An anchor can be used in two ways:  To create a link to another html document, by using the href attribute  To create a bookmark inside a document, by using the name attribute

create a link to another html document Connect a Web page to other Web sites and Web pages on the Internet We call them links/hyperlinks and use ANCHOR element Example of a link tag: Microsoft The word Microsoft is displayed in the Web page and hyperlinked to the Microsoft Web site The attribute “target” has been added The “target=“ _blank” ” attribute tells the browser to open the Microsoft Web page in a new window

Class assignment 7 HTML hyperlinks

 Open file “Charles.html” in the folder “Web design\class assignments” in notepad.  Make sure that “twocities.html” is in the same folder as “Charles.html”  Modify code of “Charles.html” to link to “twocities.html”  Add target attribute to in order to open “twocities.html” in a new window

Re-cap hyperlinks (also known as anchor tags)  …. - Anchor tag. Creates hyperlinks  microsoft creates hyperlink to a website  Open file creates a hyperlink to a file in the same directory

Re-cap hyperlinks (also known as anchor tags)  Ope n file In another directory creates a hyperlink to a file in the directory c:\webdesign  Open file on a share creates a hyperlink to a file in the directory \\lhssvr\homedirs\webdesign

Class assignment 8 HTML hyperlinks

 Create a folder “assignment8” in the folder “Web design”.  Create a file “firstlink.html”  Add, and tags to it. Remember you need to open tags and close each tag.  Create a hyperlink to

Type this code into a Notepad document and save it as firstlink.html new title Microsoft

create a bookmark inside a document  Connect within the same page.  When would that make sense?  Example of an anchor:  Sub Title  Link to an anchor:  Go to section Sub Title  Note the # sign that makes it a local link

Class assignment 9 HTML hyperlinks

 Copy file “Charles.html” in the folder “Web design\class assignments” and paste it.  Rename new file to “Charlesmenu.html”  Modify code of “Charlesmenu.html” to create a menu  Link menu to its corresponding section in the same document.

Modify file “Charlesmenu.html” Early Life …… Early years

Review  Which tag do use for hyperlinks?   What is an attribute?  Additional data that is associated with a tag  Which attribute do use with the anchor tag to specify an anchor?  AnchorText  Which attribute do use with the anchor tag to specify an hyperlink?  HyperLink Text  How do you reference an anchor within the same HTML page?  Hyperlink Text