HTML Lab 5 10/1/2015.

Slides:



Advertisements
Similar presentations
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,
Advertisements

WeB application development
Introduction to HTML L.C.M Center Workshop Fall 2008.
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
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;
Creating a Web Page HyperText Markup Language. HTML Documents  Created using any text editor  Notepad  Vi, Pico, or Emacs  If using word-processor,
Introduction to HTML academy.zariba.com 1. Lecture Content 1.What is HTML? 2.The HTML Tag 3.Most popular HTML tags 2.
Ku-Yaw Chang Assistant Professor, Department of Computer Science and Information Engineering Da-Yeh University.
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.
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
1 Essential HTML coding By Fadi Safieddine (Week 2)
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.
HTML CSS JAVASCRIPT. HTML - Stands for Hyper Text Markup Language HTML is a ‘language’ that describes web pages. This language is a collection of codes.
Hypertext Mark-Up Language Web Page Creation HTML.
INTRODUCTION. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language,
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.
HTML Lesson 3 Hyper Text Markup Language. Assignment Part 2  Set the file name as “FirstName2.htm”  Set the title as “FirstName LastName First Web Site”
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.
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
University of South Asia Course Name: Web Application Prepared By: Md Rezaul Huda Reza
CPSC 203 Introduction to Computers Lab 23 By Jie Gao.
HTML Basic Structure. Page Title My First Heading My first paragraph.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
HTML cancho. HTML HyperText Markup Language A set of HTML tags.
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.
Hyper Text Markup Language.  My First Heading My first paragraph. Example Explained The DOCTYPE declaration defines the document type The text between.
1 Introduction to HTML. 2 Definitions  W W W – World Wide Web.  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
HTML Help book. HTML HTML is the programming language used to make web pages for the Internet. HTML stands for Hyper Text Markup Language. HTML is made.
Introduction to Programming
Lab 3 Html basics.
Pertemuan 1 Desain web Pertemuan 1
Fall 2016 CSULA Saloni Chacha
INTRO TO WEB DEVELOPMENT html
Prepared by Dr. Maher Abuhamdeh 2014/2015 First semester
Html.
Web Basics: HTML/CSS/JavaScript What are they?
HTML What is HTML? HTML stands for Hyper Text Markup Language
HTML basics
Extended Learning Module F
Web Development Part 1.
Basic HTML Tutorial Amber Brady.
BHS Web Design Mr. Campbell
LAB Work 01 MBA 61062: E-Commerce
Transcriptions Studio Workshop Fall 2006
HyperText Markup Language
Mansoor Ahmed Bughio.
HTML.
What is CSS.
Introduction to Web programming
Internet & Web Engineering Course Code:CS-228 Credit Hours (3+1) Lab 1 Introduction to Markup Language HTML Instructor: Muhammad Zeeshan Haider.
COMPUTING FUNDAMENTALS
Basic HTML and Embed Codes
Web Design and Development
HTML 12/27/2018.
Introduction to HTML5.
Programming for webpages
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
Introduction to HTML.
Pertemuan 1b
HTML Basic Structure.
Introduction to HTML Lecture 1 Kanida Sinmai
Web Application Development
Pertemuan 1 Desain web Pertemuan 1
Johan Ng and Muhammad Hazzry
Images in HTML PowerPoint How images are used in HTML
Creating your website and learning HTML
HTML Introduction.
Presentation transcript:

HTML Lab 5 10/1/2015

Example <!DOCTYPE html> <html> <head> <title>HTML </title> </head> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html>

Definition HTML is a markup language for describing web documents (web pages). HTML stands for Hyper Text Markup Language A markup language is a set of markup tags HTML documents are described by HTML tags Each HTML tag describes different document content

Introduction The DOCTYPE declaration defines the document type to be HTML The text between <html> and </html> describes an HTML document The text between <head> and </head> provides information about the document The text between <title> and </title> provides a title for the document The text between <body> and </body> describes the visible page content The text between <h1> and </h1> describes a heading The text between <p> and </p> describes a paragraph

HTML Editors For learning HTML we recommend a text editor like Notepad (PC) or TextEdit (Mac). Open Notepad Write Some HTML Save the HTML Page with .html suffix View HTML Page in Your Browser

Basic HTML HyperLinks HTML Image Empty HTML Elements <a href="http://www.gsu.edu">This is a link</a> HTML Image HTML images are defined with the <img> tag. <img src=”gsu.jpg" alt=”www.gsu.edu" width="104" height="142”> Empty HTML Elements <br> is an empty element without a closing tag

HTML Style Every HTML element has a default style (background color is white and text color is black). <body style="background-color:lightgrey"> <h1 style="color:blue">This is a heading</h1> <h1 style="font-family:times">This is a heading</h1> <h1 style="font-size:14pt">This is a heading</h1> <h1 style="text-align:center">Centered Heading</h1> HTML Formatting <p><b>This text is bold</b>.</p> <p><strong>This text is strong</strong>.</p> <p><i>This text is italic</i>.</p>

Design your Webpage Title: Lab5 Heading: bold, align to center Paragraph: 14pt, times A Link name is “GSU” and link to http://www.gsu.edu Change Back-ground color

EXAMPLE