S.Y.B.M.M. LECTURE SERIES - PART 2

Slides:



Advertisements
Similar presentations
HTML I. HTML Hypertext mark-up language. Uses tags to identify elements of a page so that a browser such as Internet explorer can render the page on a.
Advertisements

Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
How Tags are used to form your Web Page
HTML and Web Page Design Presented by Frank H. Osborne, Ph. D. © 2005 ID 2950 Technology and the Young Child.
Introduction to HTML CPS470 Software Engineering Fall 1998.
COMP101 – Exploring Multimedia and Internet Computing LA2 (Thu 14:00 – 16:50) TA: Jackie Lo.
HTML Basics An Introduction to HTML. What is HTML? Stands for “Hyper Text Markup Language” Composed of “tags” which are surrounded by sideways triangles.
CpSc 462/662: Database Management Systems (DBMS) (TEXNH Approach) HTML Basics James Wang.
HTML. We’ll learn … What HTML is What tags are What a basic web page looks like What 3 HTML tags are required What HTML comments look like How to title.
 HTML stands for Hyper Text Mark-up Language. The coding language used to create documents for the World Wide Web  HTML is composed of tags. HTML tags.
All Web pages are written with some form of HTML (HyperText Markup Language). HTML documents are saved as Text Only files so virtually any computer can.
Html Basic Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
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.
Course Content - Chapter 2 Introduction to HTML Introduction to a Text Editor as a web authoring tool Instructional Activity: Creating a webpage using.
Explorers Guild April 27, What is HTML? Hypertext Markup Language (HTML) is the basic building block of the World Wide Web page. HTML files are.
XP 1 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to HTML.
Just Enough HTML How to Create Basic HTML Documents.
All you ever needed to know…and more!. H.T.M.L. HyperText Mark-up Language Web’s programming language All web browsers Set of instructions Written with.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Lesson 2: Basic HTML Code Basic HTML Code. HTML is an acronym for Hypertext Markup Language. Internet browsers translate the HTML code into texts and.
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. Hypertext Markup Language Lesson Objectives 1. We will be able to understand the need for HTML and where it is used 2. We will be edit HTML to.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
McLean HIGHER COMPUTER NETWORKING Lesson 5 HTML Description of HTML web page Creating a simple HTML web page.
Web Design. How do web pages work? Webpages are written in a code called HTML. Programs like Internet Explorer read the code, and then show it as a web.
Informatics Computer School CS114 Web Publishing HTML Lesson 1.
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. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
The Teacher Computing HTML HyperText Markup Language.
Introduction to HTML Year 8. What is HTML O Hyper Text Mark-up Language O The language that all the elements of a web page are written in. O It describes.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Web programming Part 1: HTML 由 NordriDesign 提供
CS 100 Introduction to Web Page Construction and HTML.
CPSC 203 Introduction to Computers Lab 23 By Jie Gao.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
HTML cancho. HTML HyperText Markup Language A set of HTML tags.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place Programming language.
Week-11 (Lecture-1) Introduction to HTML programming: A web based markup language for web. Ex.
HTML Structure & syntax
Online PD Basic HTML The Magic Of Web Pages
Introduction to HTML.
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
HTML – The COMPUTING UNLOCKED GUIDE
Internet Exploration: HTML Basics
XHTML/CSS Week 1.
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
Concepts of HTML, CSS and Javascript
INTRODUCTION TO HTML AND CSS
Creating a Home Page in HTML
Basic HTML PowerPoint How Hyper Text Markup Language Works
Internet Exploration: HTML Basics
INP150: Basic HTML Instructor: Paul J. Millis
Basic HTML PowerPoint How Hyper Text Markup Language Works
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
HTML HYPERTEXT MARKUP LANGUAGE.
HTML 12/27/2018.
Web Programming Language
What is HTML anyway? HTML stands for HyperText Markup Language. Developed by scientist Tim Berners-Lee in 1990, HTML is the "hidden" code that helps us.
INTRODUCTION TO HTML AND CSS
HTML What is Html? HTML stands for Hypertext Markup Language.
Web Application Development
Basic HTML Workshop.
HTML – The COMPUTING UNLOCKED GUIDE
HyperText Markup Language
AN INTRODUCTION BY FAITH BRENNER
HTML Structure & syntax
WJEC GCSE Computer Science
Presentation transcript:

S.Y.B.M.M. LECTURE SERIES - PART 2 ADVANCED COMPUTERS S.Y.B.M.M. LECTURE SERIES - PART 2 - KANISHKA KHATRI kanishka.vkhatri@gmail.com

Note : Current version is HTML5 (upgraded on May 2011). BASIC CONCEPTS OF HTML What is HTML ? HTML [Hypertext Markup Language] is the main markup language for creating web pages and other information that can be displayed in a web browser. Define structure of HTML. HTML is written in the form of HTML elements consisting tags enclosed in angle-brackets within the web content. Source : Wikipedia Note : Current version is HTML5 (upgraded on May 2011).

Structure of HTML tags [. . . Contd.] An HTML page is divided into 2 major sections: Head The head (<head></head>) section contains underlying information about the page which is not displayed in the webpage. Body The body (<body></body>) section contains all the stuff (text, image, flash movie, etc.) that appears on the actual web page when someone happens to come along with their web browser. Note : Every page MUST begin and end with the HTML tag.

Indentation of tags <html> <head> <title>Title of webpage</title> </head> <body> Contents of webpage </body> </html> Note: LIFO principle. Tags are case-insensitive. Extension .html / .htm Save as type “All Files”

You are now Ready to make your first webpage! Start basic designing using bold, italic and underline tags. Create three paragraphs [3-4 lines each]. Change the background colour of webpage. Check out different levels of header tags. Display (a+b)2 = a2+2ab+b2 & C+O2 = CO2 Divide sections of webpage using horizontal rule. Insert an image. Display pyramid of * as preformatted text. Display ordered list. Display unordered list.

That’s all folks! Any query?