Title, meta, link, script.  The title looks like:  The tag defines the title of the document in the browser toolbar.  It also: ◦ Provides a title for.

Slides:



Advertisements
Similar presentations
HyperText Markup Language (HTML) – Part 2 Laboratory of Intelligent Networks KUT Youn-Hee Han from
Advertisements

1 After completing this lesson, you will be able to: Search for information on the Web. Create a favorites list. Use and modify your History folder.
Introduction to HTML & CSS
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,
Tutorial 1: Developing a Basic Web site
Authoring Languages and Web Authoring Software 4.01 Examine web page development and design.
Chapter 7 Using Advanced Cascading Style Sheets HTML5 & CSS 7 th Edition.
IS 360 Web Promotion. Slide 2 Overview How to attract visitors.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
HTML Presented by: Ondřej Procházka Course: Distributed Data Processing Mentor: Rafał Michalski.
SEO for Web Designers By Alfredo Palconit, Jr.. I. What is SEO? A process of improving a site’s traffic and rank from organic search engine results. Notes:
Adding metadata to web pages Please note: this is a temporary test document for use in internal testing only.
Basics of HTML.
Creating a Simple Page: HTML Overview
HTML Web Programming.
IPUB 100 Lesson 2 Instructor Mark Lamontagne Homework Review.
Microsoft Expression Web - Illustrated Unit B: Creating a Web Site.
CGS3066: Web Programming and Design Summer 2014 Instructor Mir Anamul Hasan.
Define html document byusing Example : Title of the document The content of the document......
Headings, Paragraphs, Formatting, Links, Head, CSS, Images
Ahmed Mumtaz Mustehsan
SEG3210 DHTML Tutorial. DHTML DHTML is a combination of technologies used to create dynamic and interactive Web sites. –HTML - For creating text and image.
Chapter 2 Developing a Web Page. A web page is composed of two distinct sections: –The head content –The body Creating Head Content and Setting Page Properties.
Learning Web Design: Chapter 4. HTML  Hypertext Markup Language (HTML)  Uses tags to tell the browser the start and end of a certain kind of formatting.
Styling and theming Build campaigns in style. What we'll look at... How a web document is structured How HTML and CSS fit together Tools you will need.
>> Introduction to HTML: Tags. Hyper - is the opposite of linear Text – words / sentences / paragraphs Mark-up – Marking the text Language – It is a language.
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.
SEG3210 DHTML Tutorial. DHTML DHTML is a combination of technologies used to create dynamic and interactive Web sites. –HTML - For creating text and image.
Introduction to Applets CS 3505 Client Side Scripting with applets.
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
Validating, Promoting, & Publishing Your Web Site Writing For the Web The Internet Writer’s Handbook 2/e.
Copyright 2007, Information Builders. Slide 1 Understanding Basic HTML Amanda Regan Technical Director June, 2008.
Lesson 19: Site Development with FrontPage 2003 – Advanced Features.
McLean HIGHER COMPUTER NETWORKING Lesson 7 Search engines Description of search engine methods.
Basic Search Engine Optimization. What is SEO?  SEO is an abbreviation for search engine optimization.
INT222 - Internet Fundamentals Shi, Yue (Sunny) Office: T2095 SENECA COLLEGE.
CS-3432 Electronic Commerce Lecture – 7 Sikandar Shujah Toor
HTML.
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.
Cascading Style Sheets CSS. Source W3Schools
DYNAMIC HTML What is Dynamic HTML: HTML code that allow you to change/ specify the style of your web pages. Example: specify style sheet, object model.
HTML JAVASCRIPT. CONTENTS Javascript Example NOSCRIPT Tag Advantages Summary Exercise.
Ch 13 HTML and CSS Web Standards Solutions A Web Standardistas’ Approach.
HTML Overview Part 5 – JavaScript 1. Scripts 2  Scripts are used to add dynamic content to a web page.  Scripts consist of a list of commands that execute.
Are You Smarter Than a 5 th Grader? 1,000,000 5th Grade HTML 5th Grade Syntax 4th Grade HTML 4th Grade Syntax 3rd Grade HTML 3rd Grade Syntax 2nd Grade.
Headings are defined with the to tags. defines the largest heading. defines the smallest heading. Note: Browsers automatically add an empty line before.
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.
Web Technology (NCS-504) Prepared By Mr. Abhishek Kesharwani Assistant Professor,UCER Naini,Allahabad.
© ExplorNet’s Centers for Quality Teaching and Learning 1 Objective % Understand advanced production methods for web-based digital media.
Unit 5 The Web Book Test. Unit 5 Test The Web Book Test 1. On the bottom of page 46, why is writing web pages not like writing printed documents ?
Tutorial #1 Using HTML to Create Web Pages. HTML, XHTML, and CSS HTML – HyperText Markup Language The tags the browser uses to define the content of the.
HTML Tutorial. What is HTML HTML is a markup language for describing web documents (web pages) HTML documents are described by HTML tags Each HTML tag.
COMP 143 Web Development with Adobe Dreamweaver CC.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
Source of website: “Text/css rel=“styles heet” This is an external style sheet link. This means that the.
REEM ALMOTIRI Information Technology Department Majmaah University.
1 Web Engineering Lecture 1-2. HTML Title of page This is my first homepage.
Finally getting to html and CSS… Tim Berners-Lee, the writer of the software program that makes him the inventor of the WWW, defines the Internet as a.
Week-12 (Lecture-1) Cascading Style Sheets (CSS): describe how documents are presented on screens. Types of Style Sheets: External Style Sheet - Define.
Web Basics: HTML/CSS/JavaScript What are they?
HTML – The COMPUTING UNLOCKED GUIDE
Web Page Elements Writing For the Web
Week 4: Introduction to Javascript
Unit 4 Test CSS Test.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Common Page Design Elements
HTML – The COMPUTING UNLOCKED GUIDE
5.00 Apply procedures to organize content by using Dreamweaver. (22%)
Creating your website and learning HTML
Week 5: Recap and Portfolio Site
Presentation transcript:

title, meta, link, script

 The title looks like:  The tag defines the title of the document in the browser toolbar.  It also: ◦ Provides a title for the page when it is added to favorites ◦ Displays a title for the page in search engine results Source:

My Site

 The link looks like :  The tag defines the relationship between a document and an external resource.  It is mostly used to link to css style sheets. Source:

 The meta looks like :  The provides metadata about the HTML document. Metadata will not be displayed on the page.  Meta elements are used to specify page description, keywords, author of the document, last modified, and other metadata.  The metadata can be used by browsers (how to display content or when to reload a page), search engines (keywords), or other web services. Source:

 The script looks like:  The tag is used to add JavaScript. Source:

function sayHello() { var alias = document.getElementById('name').value; var greeting = 'It is good to meet you ' + alias + '!'; document.getElementById('display').innerHTML = greeting;} Please enter your name: Hello