HTML BASICS <html> <head> <title> Test page </title> <body> <h1> Internet Programming </h1> <p> This is a sample web page in testing HTML commands </p>

Slides:



Advertisements
Similar presentations
CS134 Web Design & Development Attributes, Lists, Tables, Links, and Images Mehmud Abliz.
Advertisements

XHTML II DIGITAL MEDIA: COMMUNICATION AND DESIGN F2007.
COS 125 Day 13. Agenda Capstone Progress Reports Due Quiz #2 Graded 7 A’s, 3 B’s, 3 C’s and 1 no-take Assignment #3 due this Friday We review some of.
HTML. Goals How to use the Komodo editor HTML coding and testing Basic HTML tags List and Images Tables and Links At least 2 pages and navigation
Introduction to HTML academy.zariba.com 1. Lecture Content 1.What is HTML? 2.The HTML Tag 3.Most popular HTML tags 2.
Define html document byusing Example : Title of the document The content of the document......
Chapter 2 HTML (Hypertext Markup Language) Part I.
1.  Describe the anatomy of a web page  Format the body of a web page with block-level elements including headings, paragraphs, lists, and blockquotes.
Chapter 2 HTML Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
HTML Hyper-Text Markup Language or tags. HTML is a “tag” language Open and close tags Tags identified with angle brackets Basic format content (shorthand.
1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 2.
Web pages in Linux David Douglas Sam M. Walton College of Business, University of Arkansas.
HTML | DOM. Objectives  HTML – Hypertext Markup Language  Sematic markup  Common tags/elements  Document Object Model (DOM)  Work on page | HTML.
HTML (continued). Assignment 3 Creating a web page with:  Images  Hyperlinks to some websites  Hyperlinks to your  Information about a company,
A Basic Web Page. Chapter 2 Objectives HTML tags and elements Create a simple Web Page XHTML Line breaks and Paragraph divisions Basic HTML elements.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
HTML/XHTML By Joaquin Vila. What is HTML? HTML stands for HyperText Markup Language. HTML documents are cross-platform compatible and device-independent.
HTML.
HTML HyperText Markup Language ©Richard L. Goldman July 15, 2003.
Week 2: Building a Simple Website IMC 320 Web Publishing Spring 2011.
CS 100 Introduction to Web Page Construction and HTML.
INT222 – Internet Fundamentals
Chapter 5 pp HTML Elements & Attributes Format Content Or Examples This Text Is A Hyperlink.
Week-11 (Lecture-1) Introduction to HTML programming: A web based markup language for web. Ex.
HTML Introduction. Lecture 7 What we will cover…  Understanding the first html code…  Tags o two-sided tags o one-sided tags  Block level elements.
HTML B OOT C AMP Chapter 4 Text Basics Kirkwood Continuing Education © Copyright 2016, Fred McClurg All Rights Reserved.
HTML Basics Text, Images, Tables, Forms. HTML Structure HTML is comprised of “elements” and “tags” – Begins with and ends with Elements (tags) are nested.
Lab 3 Html basics.
UNIT II WEB PAGE BASICS & HTML
SSD1 – Introduction to Information Systems
HTML.
INTRO TO WEB DEVELOPMENT html
Web Development Part 2.
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
CGS 3066: Lecture 2 Web Development and HTML5
Web Development Part 1.
CSS Classes.
HTML 2.
HyperText Markup Language
HTML Programming Basic HTML text formatting.
Elements of HTML Web Design – Sec 3-2
HTML: HyperText Markup Language
Elements of HTML Web Design – Sec 3-2
HTML5 – Heading, Paragraph
Lecture 8. HTML. Author: Aleksey Semyonov
CGS 3066: Web Programming and Design Spring 2016
Text Elements.
Elements of HTML Web Design – Sec 3-2
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)
PAGE LAYOUT - 1.  Most HTML elements are defined as block level elements or inline elements.  Block level elements normally start (and end) with a new.
Text Elements.
Computers and Scientific Thinking David Reed, Creighton University
Web Design and Development
Cascading Style Sheets
If You Know Nothing About HTML, This is Where You Start.
Text Elements.
HTML 12/27/2018.
CGS 3066: Lecture 2 Web Development and HTML5
Text Elements.
Creating a Basic Web Page
Johan Ng and Muhammad Hazzry
Lesson 2: HTML5 Coding.
WJEC GCSE Computer Science
CSS Classes.
Introduction to Cascading Style Sheets (CSS)
Text Elements.
Web Design & Development
CGS 3066: Web Programming and Design Fall 2019
Presentation transcript:

HTML BASICS <html> <head> <title> Test page </title> <body> <h1> Internet Programming </h1> <p> This is a sample web page in testing HTML commands </p> </body> </html>

<span> Applying styles to inline elements Small chunk of HTML inside a line Example <p>The <span style="color:green">span tag</span> and the <span style="color:purple">div tag</span> are *OK* man </p>

<div> Large sections The <div> tag defines a division or a section in an HTML document. The <div> tag is used to group block-elements to format them with CSS. Example: <html> <body> <p>This is some text.</p> <div style="color:#0000FF"> <h3>This is a heading in a div element</h3> <p>This is some text in a div element.</p> </div> </body> </html>

<table> <html> <body> <table bgcolor="gold" border="1" align="center" cellpadding="10px" cellspacing="10px" frame="void"> <tr> <th>Course</th> <th>Faculty</th> </tr> <td> IP </td> <td> Prof.M.Shobana </td> <td> PCD </td> <td> Prof.I.Kala </td> </table> </body> </html>

LIST UNORDERED LIST ORDERED LIST <html> <body> <ul type="square"> (disc/circle) <li>PCD</li> <li>UI</li> <li>AI</li> </ul> </body> </html> ORDERED LIST

Heading document starts with a heading can use different sizes for your headings <h1>, <h2>, <h3>, <h4>, <h5>, and <h6> <html> <head> <title>HeadingExample</title> </head> <body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> <h4>This is heading 4</h4> <h5>This is heading 5</h5> <h6>This is heading 6</h6> </body> </html>

Paragraph Tag way to structure your text into different paragraphs. opening <p> and a closing </p> tag  <html> <head> <title>Paragraph Example</title> </head> <body> <p>Here is a first paragraph of text.</p> <p>Here is a second paragraph of text.</p> <p>Here is a third paragraph of text.</p> </body> </html>

Line Break Tag <br /> element, anything following it starts from the next line <html> <head> <title>Line Break Example</title> </head> <body> <p>Hello<br /> You delivered your assignment ontime.<br/> Thanks<br /> Mahnaz </p> </body> </html>

<h1>This is <i>italic</i> heading </h1> center Italic tag <h1>This is <i>italic</i> heading </h1> <html> <head> <title>Centring Content Example</title> </head> <body> <p>This text is not in the center.</p> <center> <p>This text is in the center.</p> </center> </body> </html> underlined tag <p>This is <u>underlined</u> paragraph</p> Bold Text <p>The following word uses a <b>bold</b> typeface.</p>

Inserted Text Strike Text <p>I want to drink <del>cola</del> <ins>wine</ins></p> <p>The following word uses a <strike>strikethrough</strike> typeface.</p> Larger Text Superscript Text <p>The following word uses a <big>big</big> typeface.</p> <p>The following word uses a <sup>superscript</sup> typeface.</p>

Marked Text blockquote Strong Text <p>The following word has been <mark>marked</mark> with yellow</p> <blockquote>XHTML 1.0 is the W3C's first Recommendation for XHTML, following on from earlier work on HTML 4.01, HTML 4.0, HTML 3.2 and HTML 2.0.</blockquote> Strong Text <p>The following word uses a <strong>strong</strong> typeface.</p>