HTML two 1) Tags 2) Blocks 3) Style. Tags Opening tags: Closing tags:

Slides:



Advertisements
Similar presentations
Information Technology Quiz Questions with Answers Part 9
Advertisements

Introduction to Web Design XHTML. The Basics Elements and Tags are the basics of any webpage.
MA foundation Creating webpages using XHTML (part 1) Simon Mahony CCH
HTML Basics Customizing your site using the basics of HTML.
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
Unit 3 Day 4 FOCS – Web Design. No Journal Entry.
HTML / CSS – Basics Why the heck are we doing this?
CHAPTER 8 ADVANCED CSS. LEARNING OBJECTIVES Assign formatting styles to a CSS class definition Use a tag’s class attribute to apply the styles defined.
© 2004, Robert K. Moniot Chapter 6 CSS : Cascading Style Sheets.
How Tags are used to form your Web Page
HTML Tags. Bolding Text Or Italics Text Or
HTML Computing Concepts HTML - An Introduction 1.
Chinese Building. Today’s Topic Review last lab Links.
HTML: PART ONE. Creating an HTML Document  It is a good idea to plan out a web page before you start coding  Draw a planning sketch or create a sample.
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
HTML. Goals How to use the Komodo editor HTML coding and testing – List and Images – Tables and Links – At least 2 pages and navigation –
Define html document byusing Example : Title of the document The content of the document......
Cascading Style Sheets (CSS) 1.  What is CSS?  Why CSS?  How to write a CSS? 2.
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.
Web Pages: Creating & Maintaining Body Tags. There have been several versions of HTML since its inception. VersionYear HTML1991 HTML HTML
Chapter 2 HTML Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
More Basic HTML. Add spacing (single & double space) Save Refresh Add horizontal rule Add comments Add styles Add headings Add features Add alignments.
CSCI 1101 Intro to Computers
Html Basic Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
Unit 1 Changing the Appearance of Text. TITLE CORNELL NOTES TOPIC: NOTES: Summary: HTML Hypertext Markup Language 1 st and last tag on a page Tags Tags.
15.2 More Basic HTML. More Basic HTML Add spacing (single & double space) Save Refresh Add horizontal rule Add comments Add styles Add headings Add features.
>> Introduction to HTML: Tables. HTML is used to give websites structure 5 Basic Tags Element = Start-Tag+Content+End-Tag Heading Tags [h1-h6] Paragraph.
HTML CRASH COURSE. What is HTML?  Hyper Text Markup Language  The language used to make web pages  Written by using tags.
By Brieya. What is HTML Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects.
Web Page Creation Part I ST: Introduction to Web Interface Design Prof. Angela Guercio.
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.
Just Enough HTML How to Create Basic HTML Documents.
ECA 228 Internet/Intranet Design I Intro to Markup.
Definition CSS “Short for Cascading Style Sheets, a new feature being added to HTML that gives both Web site developers and users more control over how.
1 Web Application Programming Presented by: Mehwish Shafiq.
HTML Lesson 2. Review Questions  What are HTML tags used for?  What do HTML tags look like?  What are the 3 required HTML tags?  In what section of.
IDK0040 Võrgurakendused I harjutus 01: Introduction Deniss Kumlander.
HTML. Adding Background Color The bgcolor attribute lets you change the background color of the Web page. Located in the body tag See common Web Page.
Colors & Fonts Building a Website Lesson 7. Font Font The tag specifies the font face, font size, and color of text. The tag can have any or all of these.
HTML GUIDE Press F5 and then Click on the links on the left to get to the section you want Section 1: Getting Started Section 2: Moving Banner Section.
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.
Are You Smarter Than a 5 th Grader? 1,000,000 5th Grade HTML 5th Grade Syntax 4th Grade HTML 4th Grade Syntax 3rd Grade HTML 3rd Grade Syntax 2nd Grade.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Basic HTML Programming Technology Education Ellsworth Community Middle School Communication Systems.
The Web Wizard’s Guide to HTML Chapter Two Basic Text Formatting.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
Your HTML website creating your first html file. Creating an HTML FIle Open note pad from accessories, programs. Write code. Save and view. In 3 Steps.
HTML + CSS II LET’S BUILD AN ACTUAL WEBSITE!. OVERVIEW This Session  Brief review of basics   “id” and “class”  Using a CSS template Upcoming Sessions.
HTML HTML stands for Hyper Text Markup Language. HTML is used in making the base of a Website You can just use an online website maker like weebly.com.
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.
Revision Webpage design HTML.   FACE  Attributes  Marquee  Define the following terms.
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.
Create Your Own Web Page: An Introduction to HTML Instructor: Corey Johnson Assisted by: tba.
HTML is the language that allows text and graphics to be displayed as Web pages. It is a set of special codes, called tags, that tells a browser application.
HTML Basic IST 210: Organization of Data IST2101.
HTML Basics Text, Images, Tables, Forms. HTML Structure HTML is comprised of “elements” and “tags” – Begins with and ends with Elements (tags) are nested.
>> Introduction to CSS
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
Coding, Testing and Valdating a Web Page
Tag Basics.
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
WEBSITE DESIGN Chp 1
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
HyperText Markup Language
Presentation transcript:

HTML two 1) Tags 2) Blocks 3) Style

Tags Opening tags: Closing tags:

Blocks Blocks are made up of an opening and closing tag and everything in between: Hello there

Nesting Blocks Bad: Hello there Good: Hello there

Style Indentation – Inside a block indent Hi there Consistent case – Tag Names, Attribute Names

More Style Always Always Always quote attribute values good: bad:

The three basic tags and blocks

The three basic tags and blocks cont. Html – This is the outside block in which we will create our webpage, for our purposes there should never be anything outside it. Head – This is the block in which we place information about the page, such as the title. In fact we won't really use it for anything else until after the first project.

The three basic tags and blocks cont. Body – This is where we place all the content that is going to be seen by the user. The rule of thumb is, if it is going to be seen by the user it will go here.

Adding Information to our page Some cool catchy title Tiberius Claudius Nero Born: November 16, 42 BC Died: March 16, 37 AD

How can we make the text look right? Since all whitespace (spaces, returns) gets compressed to a single space we need to use a tag to get line breaks: Tiberius Claudius Nero Born: November 16, 42 BC Died: March 16, 37 AD

Writing for the web (sort of) Headings draw the eye in. They can also be used to draw the eye in.,,,,, Tiberius Claudius Nero

A better way to control the font The tag uses following attributes: – Size: can be relative (+2, -2,etc..) or absolute (1-5) – Color: for now you can make this red, blue, etc... Born: November 16, 42 BC

But changing the actual Font? In that case use the face attribute Died: March 16, 37 AD

Bold and Italics, Died: March 16, 37 AD

Background Color The bgcolor of the tag

thanks Charles Smith 17 Reference Website