HTML What is HTML? HTML stands for Hyper Text Markup Language

Slides:



Advertisements
Similar presentations
Farhan Nisar University of Peshawar
Advertisements

100 points 200 points 400 points 800 points800 points800 points800 points800 points 1600 points 3200 points.
HTML Basics 1450 Technology Seminar Copyright 2003, Matthew Hottell.
CREATED BY : VIRAL M.KORADIYA. Anchor elements are defined by the element. The element accepts several attributes, but either the Name or HREF attribute.
HTML. The World Wide Web Protocols Addresses HTML.
Introduction to HTML II Shih-Heng Chin. Preface Structure of a HTML File Elements used frequently Tables.
HTML. Creating a Table Attributes: border: indicates the border type of the table Value: 0 (no border), 1, 2, etc. cols: indicates the number of columns.
Introduction to HTML academy.zariba.com 1. Lecture Content 1.What is HTML? 2.The HTML Tag 3.Most popular HTML tags 2.
CpSc 462/662: Database Management Systems (DBMS) (TEXNH Approach) HTML Basics James Wang.
CS105 Introduction to Computer Concepts HTML
Define html document byusing Example : Title of the document The content of the document......
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.
Dr. Nuha El-KhaliliInternet Programming ( ) HTML Hyper Text Markup Language The language of web pages Maintained by the W3C
HTML Introduction to HTML Tags. HTML Document My first HTML document Hello world!
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
CHAPTER 1 HTML & HTML5 I อ. ยืนยง กันทะเนตร คณะเทคโนโลยีสารสนเทศและการสื่อสาร มหาวิทยาลัยพะเยา 1.
Just Enough HTML How to Create Basic HTML Documents.
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,
CS105 INTRODUCTION TO COMPUTER CONCEPTS HTML Instructor: Cuong (Charlie) Pham.
XHTML1-1 Extensible HyperText Markup Language (XHTML) Part 2 Xingquan (Hill) Zhu
HTML (Hypertext Markup Language) – Class 3 Recap: HTML Special Characters (ex: ©). Including Images – using the tag. Lists – Ordered and Unordered.
HTML Hyper Text Markup Language. Create TABLE in an HTML Tables are defined with the tag. A table is divided into rows (with the tag), and each row is.
L. Anne Spencer (c) 2001 Basic Web Design Document, text, & layout formatting tags & attributes.
Web programming Part 1: HTML 由 NordriDesign 提供
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
Basic HTML Programming Technology Education Ellsworth Community Middle School Communication Systems.
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 is a markup.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
1999, COMPUTER SCIENCE, BUU Introduction to HTML Seree Chinodom
HTML Basic Structure. Page Title My First Heading My first paragraph.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
INT222 – Internet Fundamentals
1 HTML. 2 Full forms WWW – world Wide Web HTTP – Hyper Text Transfer Protocol HTML – Hyper Text Markup Language.
Revision Webpage design HTML.   FACE  Attributes  Marquee  Define the following terms.
HTML for web designing short course. What is an HTML File? HTML stands for Hyper Text Markup Language An HTML file must have an htm or html file extension.
HTML AN INTRODUCTION TO WEB PAGE PROGRAMMING. INTRODUCTION TO HTML With HTML you can create your own Web site. HTML stands for Hyper Text Markup Language.
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.
Week 1: Introduction to HTML and Web Design
Pertemuan 1 Desain web Pertemuan 1
INTRO TO WEB DEVELOPMENT html
Web Basics: HTML/CSS/JavaScript What are they?
HTML basics
Extended Learning Module F
LAB Work 01 MBA 61062: E-Commerce
Marking Up with XHTML Tags describe how a web page should look
Elements of HTML Web Design – Sec 3-2
HTML: HyperText Markup Language
Elements of HTML Web Design – Sec 3-2
Mansoor Ahmed Bughio.
HTML Lab 5 10/1/2015.
3.00cs HTML Overview 3.00cs Develop webpages.
Elements of HTML Web Design – Sec 3-2
Tag Basics.
COMPUTING FUNDAMENTALS
Computers and Scientific Thinking David Reed, Creighton University
Basic HTML and Embed Codes
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
HTML 12/27/2018.
Introduction to HTML5.
Pertemuan 1b
Html.
Web Application Development
Marking Up with XHTML Tags describe how a web page should look
Pertemuan 1 Desain web Pertemuan 1
Marking Up with XHTML Tags describe how a web page should look
Johan Ng and Muhammad Hazzry
Web Programming and Design
Marking Up with XHTML Tags describe how a web page should look
CGS 3066: Web Programming and Design Fall 2019
Presentation transcript:

HTML What is HTML? HTML stands for Hyper Text Markup Language HTML describes the structure of Web pages using markup HTML elements are the building blocks of HTML pages HTML elements are represented by tags HTML tags label pieces of content such as "heading", "paragraph", "table", and so on Browsers do not display the HTML tags, but use them to render the content of the page

First Example <!DOCTYPE html> <html> <head> <title>computer science</title> </head> <body> <b> hellow all students </b> </body> </html>

Second Example <!DOCTYPE html> <html> <head> <title>computer science</title> </head> <body> <h1> hellow all students </h1> </body> </html>

Some of tags The <!DOCTYPE html> declaration defines this document to be HTML5 The <html> element is the root element of an HTML page The <head> element contains meta information about the document The <title> element specifies a title for the document The <body> element contains the visible page content The <h1> element defines a large heading The <p> element defines a paragraph The <b> element make text bold

Some of tags The <br> (break line)tag used to break line(go to new line) <!-- comment --> The <hr> horizontal rule: used to make horizontal line

Tag with attributes Bgcolor to set background color Align (left,right,center) to move the text to left or right or center

Some of tags <strong> make text bold <pre> preformatted text: show text with both spaces and line breaks. <address> using to write address in html

example <html> <title>chewan</title> <body bgcolor="pink"> <h1 align="center">chewan </h1> <p align="right">jalal </p> <hr> <p align="left">muhamad </p> <pre> email:chewanjalal@yahoo.com phone:333 </pre> </body> </html>

hyperlink 8/11/2016 hyperlink used to link to another page. We create hyperlink by <a href=“”> tags

Example of hyperlink <html> <title>create link </title> <body> <a href="test.html"> click me </a> </body> </html> test.html is the page you want to visit it

Example2 of hyperlink <html> If we want open the page in new tab ,using target=“_blank” <html> <title>create table </title> <body> <a href="test.html" target="_blank">click me </a> </body> </html>

Make image as link <html> To bring image using <img> tag Write it instead text between <a> tag <html> <title>create table </title> <body> <a href="test.html" target="_blank"> <img src="a.jpg" width=“100px" height="100px"> </a> </body> </html>

Local link Link to a location in the same page 1-create ID to the Tag that you want to visit it. 2-create link and write name of ID with # character .

Example of local link <html> <body> <a href="#a">go to computer science </a> <br><br><br><br><br><br> <br><br> <p>.....</p><p>.....</p><p>.....</p> <p>.....</p><p>...</p><p>..</p> <p id="a"> computer science </p> </body> </html>

Exercise

Frame Frame:using to display more than one page in same page. <frameset>: define how to divide the window Into frames and each frameset have set of rows or columns . <frame>: define each frame to show one page

Example You must already create three page(a.html, b.html,c.html) <frameset cols="25%,50%,25%"> <frame src="a.html"> <frame src="b.html"> <frame src="c.html"> </frameset> </html>