Basic HTML PowerPoint How Hyper Text Markup Language Works.

Slides:



Advertisements
Similar presentations
Introduction to HTML
Advertisements

HTML Basics Customizing your site using the basics of HTML.
Lists in HTML PowerPoint How to create lists in HTML
HTML popo.
Introduction to HTML & CSS
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
Website Design.
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
Anne McGrath 16 th February  Review of what we have learned so far.  Angled brackets surround HTML tags.  The words between the angled brackets.
XHTML Basics.
How Tags are used to form your Web Page
1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 1.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
Glencoe Digital Communication Tools Create a Web Page with HTML Chapter Contents Lesson 4.1Lesson 4.1 Get Started with HTML (85) Lesson 4.2Lesson 4.2 Format.
HTML Notes Chapters 1--6 Codes used in creating HTML documents are called tags. Tags are always enclosed in left ( ) angle brackets. Tags can be upper.
Basic HTML The Magic Of Web Pages. Create an HTML folder  Make a folder in your H drive and name it “HTML”. We will save EVERYTHING for this unit here.
Using HTML to Create a Basic Web Page… By Josh Gallagan.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
HTML Structure & syntax
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
Essential Tags Web Design – Sec 3-3 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I” Course materials.
Tutorial 1 Developing a Basic Web Page. New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Objectives – Lesson 1 Introduction to the.
Essential Tags Web Design – Sec 3-3 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I” Course materials.
>> Introduction to HTML: Tags. Hyper - is the opposite of linear Text – words / sentences / paragraphs Mark-up – Marking the text Language – It is a language.
HTML INTRODUCTION, EDITORS, BASIC, ELEMENTS, ATTRIBUTES.
HTML. WHAT IS HTML HTML stands for Hyper Text Markup Language HTML is not a programming language, it is a markup language A markup language is a set of.
Html Basic Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
HTML CRASH COURSE. What is HTML?  Hyper Text Markup Language  The language used to make web pages  Written by using tags.
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.
Course Content - Chapter 2 Introduction to HTML Introduction to a Text Editor as a web authoring tool Instructional Activity: Creating a webpage using.
XP 1 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to HTML.
Web Programming Basics of HTML. HTML stands for Hyper Text Mark-up Language A mark-up language is different than those that you have learned before in.
15.1 Fundamentals of HTML.
HTML Hyper Text Markup Language. What is an HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup.
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Creating Webpage Using HTML
Introduction to HTML Wah Yan College (Hong Kong) Mr. Li C.P.
HTML: Hyptertext Markup Language Doman’s Sections.
LEARNING HTML PowerPoint #1 Cyrus Saadat, Webmaster.
Chapter 2 Web Page Design Mr. Gironda. Elements of a Web Page These are things that most web pages use.
Styling in HTML PowerPoint How to style in HTML. Styling in HTML Styling tags can be added to HTML to place emphasis or add appeal – These tags must be.
Lecture: Web Design Assis. Prof. Freshta Hanif Ehsan Faculty of Computer Science Kabul Polytechnic University Spring Semester
15.1 Fundamentals of HTML DeKalb County School System.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
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.
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.
15.1 Fundamentals of HTML 2 assignments: 1st—complete the worksheet. 2nd—create your first HTML web page following the directions in this PowerPoint where.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
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”
Using HTML. Glogger Glogger is like you own personal web page, you can add… Pictures Text Videos Music, etc… Modify and adjust anything you want Glogger.
Creating Your 1 st Web Page. Tags Refers to anything between on a webpage Most appear in pairs surrounding content Some appear as empty tags (no closing.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
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.
1 Introduction to HTML. 2 Definitions  W W W – World Wide Web.  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web.
NOTEPAD++ Lab 1 1 Riham ALSmari. Why Notepad++ ?  Syntax highlighting  Tabbed document interface  Zooming  Indentation code  Find and replace over.
Online PD Basic HTML The Magic Of Web Pages
HTML Basics.
Introduction to HTML:.
Introduction to basic HTML
Basic HTML PowerPoint How Hyper Text Markup Language Works
Best Practices in HTML PowerPoint HTML Best Practices
Lists in HTML PowerPoint How to create lists in HTML
Basic HTML PowerPoint How Hyper Text Markup Language Works
15.1 Fundamentals of HTML 2 assignments: 1—complete the worksheet
Best Practices in HTML PowerPoint HTML Best Practices
WJEC GCSE Computer Science
Presentation transcript:

Basic HTML PowerPoint How Hyper Text Markup Language Works

Saving Properly When creating a web site, you always need to create a new folder for each site. Go to your G:drive and create a new folder Name it assignment 1 Each different assignments you must make a new folder and always save your.html files and images in that folder.

Basics of HTML 2 ways to view a webpage – Web view is how the browser interrupts your code (how you normally view web pages). The purpose of a web browser (like Internet Explorer, Firefox, Chrome, etc) is to read HTML documents and display them as web pages. – Source code view is the written text that is created by the web designer. The source code for any webpage can be viewed. HTML tags are written between angle brackets ( ) and most tags will usually come in pairs like and

Basics of HTML cont. The first tag in a pair is called the opening tag ( ) and the second is called the closing tag ( **note the “/”) The browser does not display the HTML tags, but uses the tags to interpret the content of the page. Tags order matters! If you open the tags one way then it must reverse when closed. Example: Hello World Tags are not case sensitive

Basics of HTML cont. All HTML documents start with and end with Every HTML webpage has 2 sections which are denoted by HTML tags – The Head section will always open & close before the Body section opens

Basics of HTML – Head Section Head section – This section always begins with and ends with – This section will not be visible in the body of the web browser – The name of the webpage that appears in the title bar is placed in this section Example: My First Page Others elements can be placed in this section but we will go over those in a later lesson

Basics of HTML – Body Section Body Section – Information displayed in this section will be displayed in the body of the web browser – The closing body tag will always proceed the closing HTML tag.

Basics of HTML – Saving How to save as HTML – File -> Save As -> (the name you want the file to be).html – When you save as.html this tells the computer that this file should be opened by a browser – If using a simple text editor, typing.html manually is required – Example: MyFirstPage.html MyFirstPage.doc - Will open as a webpage - Will not open as a webpage

Basics of HTML – REVIEW Webpage title My first webpage Starts every HTML page Info in this section will not appear in the body of the web browser Info in this section will appear in the body of the web browser Ends every HTML page

Meta Tags HTML meta tags are officially page data tags that lie between the open and closing tags in the HTML code of a document.

Meta Tags Here's a code example of meta tags: Not a Meta Tag, but required anyway

Description Meta Tag This is what the description tag looks like: The “description” meta tag helps websites in three important ways: – Tells the search engine what your page or site is about – Helps you click through rates to your site – Helps with ranking your site

Review of HTML Titles the browser

Best Practices in HTML PowerPoint HTML Best Practices

Best Practices in HTML Best practice refers to a set of unofficial guidelines that developers follow in order to make sure that they do the best quality work. This is not only to make their lives easier but also to help others understand what you have done and, when you run into trouble, help you quickly.

Best Practices in HTML – Close all tags that should be closed Occasionally you can get by without closing certain tags without any repercussions but it is a good habit to always close the tags that should be closed – Write tags in all lowercase Case does not matter in HTML, but when you learn XHTML (which is lowercase sensitive) you will have an easier time transitioning – Keep pictures proportional HTML tags can resize pictures but avoid stretching pictures

Best Practices in HTML – Closing tags should be a mirror image of opening tags Occasionally tag order can be wrong but still work; proper order must be followed. If you bold, italicize, & then underline text make sure the closing tags are underline, italics, & then bold – Example Works but NOT correct: Some Text Works and is correct: Some Text

Styling in HTML PowerPoint How to style in HTML

Styling in HTML Styling tags can be added to HTML to place emphasis or add appeal – These tags must be closed … bold … italics … underline … starts and ends paragraphs; creates 1 blank line – These tags do not have to be closed … line break … horizontal rule; creates a straight line across the page

Styling in HTML cont. – Heading tags must be closed … Largest heading tag … 2 nd largest heading tag … 3 rd largest heading tag … 4 th largest heading tag … 2 nd smallest heading tag … smallest heading tag

Styling in HTML – REVIEW Code View: My name is… The Great Gatsby See Spot Run Earth Mars Yellow Bird About us What to do now? Browser View My name is… The Great Gatsby See Spot Run Earth Mars Yellow Bird About us What to do now?

Lists in HTML PowerPoint How to create lists in HTML

Creating Lists in HTML 3 types of lists – Unordered list Bulleted items – Ordered list Numbered items – Definition List a list of items, with a description of each item

Unordered Lists in HTML The tag for a bulleted list is & Each item is surrounded with the open and close tag (li = list item) Bullets can be changed to squares or circles with the optional code type=“square” or type=”circle” in the tag. – Code View Milk Eggs -- Browser View Milk Eggs

Ordered Lists in HTML The tag for a numbered list is & Each item is surrounded with the open and close tag (li = list item) List items will be numbered Numbers can be changed to a, A, i, or I with the optional code type=“a”, type=“A”, etc in the tag. – Code View George Washington John Adams -- Browser View 1. George Washington 2. Johns Adam

Definition Lists in HTML The tag for this list is & Each term is surrounded with the tag and each description is surrounded with the tag – Code View Electron - carries a negative electric charge Neutron - carries no electric charge -- Browser View Electron - carries a negative electric charge Neutron - carries no electric charge

Lists in HTML – REVIEW Ordered lists produce numbered lists Unordered lists produce bulleted lists Each item in an ordered list & unordered list is surrounded with the tag Definition lists produce terms with definitions Each term in a definition list is surrounded with the tag and each description is surrounded with the tag.

Assignment HTML Assignment #1