Download presentation
Presentation is loading. Please wait.
1
INTRODUCTION TO HTML5
2
HTML HTML stands for Hyper Text Markup Language.
World Wide Web(WWW) is actually in form of files written in a special language called HTML.
3
STRUCTURE OF WEB SITE A well-structured website should allow the user to get the information within few clicks. A Web site has three main sections,
4
IMPORTANCE TO HTML5 Used in any platform
Display any type of document, anywhere in the world Used in any platform (UNIX, Windows etc) Make text attractive Easy to learn Consider to be most powerful tool for web designing
5
LIMITATION OF HTML Use scripting language for user interaction
Not a software programming language HTML use fixed predefined tags
6
WEB BROWSERS
7
HTML EDITORS 2 TYPES WYSIWYG(What You See Is What You Get) Text editors
8
WYSIWYG(What You See Is What You Get)
They have graphical interfaces and tools to develop Web Pages(insert table,images,tables,lists….etc) Microsoft FrontPage & Adode Dreamweaver are 2 popular WYSIWYG HTML editors. Advantages: Web sites created quickly. No need of HTML tags/commands knowledge.
9
TEXT EDITORS Create HTML documents with Notepad, WordPad or any other text editor. Should familiar with HTML coding.
10
Creating a HTML program?
11
Viewing HTML documents in a Web browser?
12
HTML Elements
13
HTML Tags
14
HTML Attributes
15
Types of HTML Elements Container Elements Empty Elements
HTML element that have only ON tag. Container Elements Includes both ON and OFF tags.
16
HTML rules Tag name and attribute names are not case sensitive.
Attribute values should always enclosed in quotes, mostly double quotes. Eg:<hr color=“green”> Attributes values are case sensitive. Space between tags do not matter. Eg: <b>WELCOME</b> <b> Is the same as WELCOME <b> WELCOME </b> </b> Tag names cannot contain spaces. Eg:<h e a d> is not same as <head> Elements can be nested. Eg: <b><u> WELCOME </u></b>(correct) <b><u> WELCOME </b></u>(wrong)
17
Structure of an HTML Document
18
LINE BREAK ELEMENT<br>
19
CASCADING STYLE SHEET[CSS]
CSS is the language that provides a set of style rules for displaying elements on a web page. SYNTAX: slector{property1:property1-value; property2:property2- value;………..} Example: body{background-color:yellow;background-repeat:repeat-y}
20
CSS styles can be incorporate in an HTML document in one of the following ways
External style sheets: It is the separate document has the extension .css. These are used to apply a uniform style to many Web Pages without writing the same code again. Embedded style sheets: A set of styles is created as part of an HTML document. These are used when you want to apply similar styles to different elements on the same page. It created using the <style> tag inside the <head> tag. Inline styles: This is used to apply a style to specific elements of a web page.
22
Create a your own WEB PAGE …
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.