Lab 3 Html basics.

Slides:



Advertisements
Similar presentations
Introduction to Web Design Lecture number:. Todays Aim: Introduction to Web-designing and how its done. Modelling websites in HTML.
Advertisements

HTML Basics Customizing your site using the basics of HTML.
HTML popo.
Introduction to HTML & CSS
Learning HTML. > Title of page This is my first homepage. Tells Browser This is an HTML page Basic Tags Tells Browser End of HTML page Header information.
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
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,
WeB application development
Teppo Räisänen LIIKE/OAMK 2010
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
Basic HTML Workshop LIS Web Team Fall What is HTML? Stands for Hyper Text Markup Language Computer language used to create web pages HTML file =
HTML BASIC
Define html document byusing Example : Title of the document The content of the document......
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.
HTML (HyperText Markup Language)
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
Understanding HTML Code
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
Html Basic Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
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.
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,
HTML: Hyptertext Markup Language Doman’s Sections.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
CPT 499 Internet Skills for Educators Session Ten Class Notes.
HTML Basics Computers. What is an HTML file? *HTML is a format that tells a computer how to display a web page. The documents themselves are plain text.
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.
WEEK -1 ACM 262 ACM 262 Course Notes. HTML What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML.
HTML HYPER TEXT MARKUP LANGUAGE. INTRODUCTION Normal text” surrounded by bracketed tags that tell browsers how to display web pages Pages end with “.htm”
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
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.
Intranets & HTML.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
Introduction to Programming
Fall 2016 CSULA Saloni Chacha
IS1500: Introduction to Web Development
HTML.
INTRO TO WEB DEVELOPMENT html
Introduction to HTML.
HTML Basics.
Html.
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
HTML basics
Web Development Part 1.
LAB Work 01 MBA 61062: E-Commerce
HyperText Markup Language
How to create a static website with HTML
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
HTML Lab 5 10/1/2015.
HTML.
Cascading Style Sheets (CSS)
Introduction to the Internet
Internet & Web Engineering Course Code:CS-228 Credit Hours (3+1) Lab 1 Introduction to Markup Language HTML Instructor: Muhammad Zeeshan Haider.
Tag Basics.
HTML (HyperText Markup Language)
WEBSITE DESIGN Chp 1
Computers and Scientific Thinking David Reed, Creighton University
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Pertemuan 1 Desain web Pertemuan 1
HTML Basics Mr. Fazzalari.
Johan Ng and Muhammad Hazzry
Images in HTML PowerPoint How images are used in HTML
Web Design & Development
Presentation transcript:

Lab 3 Html basics

Agenda What is HTML. HTML structure. HTML meta tags. Placing links for navigations Web Page validating through W3C.

What IS HTML ?? HTML is the "mother tongue" of your browser. HTML is a language, which makes it possible to present information (e.g. scientific research) on the Internet. What you see when you view a page on the Internet is your browser's interpretation of HTML. To see the HTML code of a page on the Internet, simply click "View" in the top menu of your browser and choose "Source".

What IS HTML ?? What does it meant by tags ??!! When a browser opens an HTML file, the browser will look for HTML codes in the text and use them to change the layout, insert images, or create links to other pages. Since HTML documents are just text files they can be written in even the simplest text editor. HTML is not a programming language, it is a markup language. A markup language is a set of markup tags, HTML uses markup tags to describe web pages. What does it meant by tags ??!!

What is ….HTML Tags ?!! Tags is something like : < body> It is number of keywords surrounded by greater than and less than brackets < >, that’s make it descriptive language. This keyword is doing it’s own mission. Tags are used to describe words that come after it. Some tags need a description for it’s mission, that’s is called attribute for that tag. It’s placed after the tag name and before close the tag with it’s brackets. Ex : <body bgcolor=“red” >

HTML Basic Structure

HTML Basic Structure Consider the following simple static web page

HTML Basic Structure     Head             Body      All normal Web Pages consist of a head and a body. The head is used for text and tags that do not show directly on the page. The body is used for text and tags that are shown directly on the page.

HTML Basic Structure . The most basic code - the code you will use for any page you make, is shown below <html> <head> <!-- This section is for the title and technical info of the page. --> </head> <body> <!-- This section is for all that you want to show on the page. --> </body> </html>

HTML Basic Tags <HTML> ……. </HTML> Tag . The basic tag that tell the editor it is a beginning of an HTML file. The whole code for programming the page must included inside these tag. <head> ….. </head> tag. Information between these two tags is not visible on your page. You can call external files here. <body> …… </body> Page contents you wants to appear directly is written here

HTML Basic Structure All the page content Appeared here Is written in <body> …. </body>

HTML Tags

HTML Basic Tags <center> <H1> WELCOME TO THEBES ACADMEY <body> <center> <H1> WELCOME TO THEBES ACADMEY </H1> <img src = “banner.jpg” > <HR/> AVAILABLE INSTITUTIONS </center>

HTML Headings HTML headings are defined with the <h1> to <h6> tags. <h1>This is a heading</h1> <h2>This is a heading smaller than h1</h2> <h3>This is a heading smaller than h2</h3> …………

HTML Paragraphs HTML paragraphs are defined with the <p> tag. <p>This is a paragraph</p> <p>This is another paragraph</p> <center> …< /center> For putting text, images or any other contents in the center of the page. During CSS styling it could be written is different way.

HTML Images HTML images are defined with the <img> tag. <img src="C:\Users\pc\Desktop\HTML tutorials\bue_logo.jpg" width="104" height="142" />

HTML Hyper Links HTML links are defined with the <a> tag. <body> <a href = “page2.html” > Higher Institution for computer and information system </a> <a href = “page3.html> Higher institution for engineering <a> </body>

HTML Hyper Links By clicking on institution of computer and information system the following page are called

Other HTML Tags HTML Line Breaks HTML basic formatting <p><b>This text is bold</b></p> <p><i>This text is italic</i></p> <p><code>This is computer output</code></p> <p>This is<sub> subscript</sub> and <sup>superscript</sup></p> This is<br />a para<br />graph with line breaks This text is bold This text is italic This is computer output This is subscript and superscript

Other HTML Tags <h1 style="text-align:center"> HTML styles Background Color Font Family, Color and Size Text Alignment <body style="background-color:yellow">   <p style="font-family:courier new; color:red; font-size:20px"> <h1 style="text-align:center">

Discover these Tags <u>...</u> , <i>...</i> and <b>...</b> <big> …. </big>, <small> ….. </small> <strong> ….. </strong>, <strike>...</strike> <div> … </div> , <span> … </span> <em> ….. </em> <code> ….. </code>, <address> …. </address>

Meta Tags Meta tags are used to store information usually relevant to browsers and search engines For example, some search engines look to meta tags for descriptions, keywords. DESCRIPTION meta tag: <meta name="DESCRIPTION" content="AN HTML Tutorial">  KEYWORDS  <meta name="Keywords" content="first, second, third"> Author: <meta name="Author" content="Author Information"> Copy right: <meta name="Copyright" content="Copyright Statement">