Basic HTML Tags Ryan Frazier April 30,2004 CSC113.

Slides:



Advertisements
Similar presentations
HyperText Markup Language (HTML) – Part 2 Laboratory of Intelligent Networks KUT Youn-Hee Han from
Advertisements

Introduction to HTML. A Web Page is.. An ASCII (text) file.. Whose filename ends with.htm or.html –index.html or cookie-recipe.htm Contains HTML tags.
Session 2 Introduction to HyperText Markup Language 4 (HTML 4) Matakuliah: M0114/Web Based Programming Tahun: 2005 Versi: 5.
HTML popo.
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
Cascading Style Sheets
1 تقنيات الانترنت عال457 HTML. 2 HTML  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web. HTML is a text formatting.
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
1 Outline 9.1Introduction 9.2Markup Languages 9.3Editing HTML 9.4Common Tags 9.5Headers 9.6Text Styling 9.7Linking 9.8Images 9.9Formatting Text With 9.10Special.
 2001 Deitel & Associates, Inc. All rights reserved. 1 Outline 9.1Introduction 9.2Markup Languages 9.3Editing HTML 9.4Common Tags 9.5Headers 9.6Text Styling.
© red ©
Workshop: CSS-Part I Cascading Style Sheets add style to your HTML web pages.
Basic HTML UCR Webmasters Support Group Derk Adams.
HTML BASIC
Contains 16,777,216 Colors. My Car is red My Car is red How do I add colors to my web page? Notepad Browser Works with the “Standard” colors: Red, Green,
1 Introduction to HTML. 2  W W W – World Wide Web.  HTML – HyperText Markup Language – The Language  of Web Pages on the World Wide Web. HTML is a.
1 Creating a Web Page An introduction to Hypertext Markup Language (HTML) ~~~~~ ~~~~ ~~~~~
HIGHER COMPUTING CSS. WHAT IS CSS? CSS: Cascaded Style Sheets used to separate a web site’s content(information) from its style(how it looks).
Explanation of Web 6, Web 7 and Web 9 at my site Please be sure to bring up the speaker notes for the explanation Intro - Web 6, Web 7 and Web 9.
Computer Science 101 HTML. World Wide Web Invented by Tim Berners-Lee at CERN, the European Laboratory for Particle Physics in Geneva, Switzerland (roughly.
CompSci Today’s topics Networks & the Internet Basic HTML ä The basis for web pages ä “Almost” programming Upcoming ä Connections ä Algorithms.
Creating a Web portal: Part II HyperText Markup Language (HTML) Bair-Mundy.
Learning HTML. HTML Attributes HTML elements can have attributes Attributes provide additional information about an element Class – specifies a class.
 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.
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.
Unit 1 — HTML BASICS Lesson 2 — HTML Organization Techniques.
Copyright (c) 2004 Prentice-Hall. All rights reserved. 1 Committed to Shaping the Next Generation of IT Experts. Formatting Text and Lists Essentials for.
Chapter 6 An Introduction to HTML Pages Tag Nesting You can put two tags together to combine the effects Bold and underlined But make sure.
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.
Exploring the Digital Domain HTML Basics. HTML Hypertext Markup Language Standard (ASCII) text with embedded format codes Most HTML tags are paired Tags.
G053 Lecture 12 Introduction To HTML Mr C Johnston ICT Teacher
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.
Web Colors. Web Colors: Up until now, we have been using only pre- defined color names, such as "orange" and "lightblue". As web designers, we need the.
HTML Basic IST2101. Keep In Mind Programming can be time consuming. Plan ahead!
CPSC 203 Introduction to Computers Lab 33 By Jie Gao.
Georgia Institute of Technology Making Text for the Web Barb Ericson Georgia Institute of Technology March 2006.
Introduction to HTML. HTML Introduction HTML – Hypertext Markup Language are the instructions that tell a browser how to lay out the information (text,
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.
Introduction to HTML : Hyper Text Markup Language.
HTML & Color How to Use Color  Backgrounds-  Usually a light color is best  Should have a color based on a theme or plan  Can have a dark.
CS543: WEB APPLICATION PROGRAMMING Lab 1: HTML tags & SW installation Computer Science Department.
HTML BASIC IST 210: Organization of Data IST210 1.
Web Design (14) CSS Formatting Text. Formatting Text In Brackets, go to your ‘externalcss’ website and find the ‘formattingtext’ page. Use the ‘main’
CompSci Today’s topics Networks & the Internet Basic HTML ä The basis for web pages ä “Almost” programming Upcoming ä Connections ä Algorithms.
CS 100 Introduction to Web Page Construction and HTML.
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.
G046 Lecture 03 Introduction To HTML Mr C Johnston ICT Teacher
Writing Web Pages in HTML HTML.1 The Web  Lots of computers connected together in a collection of networks  HyperText Markup Language (HTML) is a common.
CompSci Today’s topics Basic HTML  The basis for web pages  “Almost” programming Upcoming  Programming  Java Reading Great Ideas Chapters 1,
CompSci 1 Lecture 2 HTML Webpages. Today’s Topics Basic HTML The basis for web pages “Almost” programming Upcoming Programming Java Reading Great Ideas.
ColorsColors. Color Keywords/Names 140 color keywords/names are defined in the HTML and CSS color specification –17 standard colors (HTML accepts 16 of.
1 HTML. 2 Full forms WWW – world Wide Web HTTP – Hyper Text Transfer Protocol HTML – Hyper Text Markup 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.
Basic Web Publishing M. Scott Gartner 7/15/98.
Let’s Try It! Open Notepad
What is HTML? Acronym for: HyperText Markup Language
Fundamentals of Web Programming
Introduction to HTML.
CSCI-235 Micro-Computers in Science
Today’s topics Networks & the Internet Basic HTML
Computers and Scientific Thinking David Reed, Creighton University
15.2 More Basic HTML & CSS.
HTML 12/27/2018.
More Basic HTML 2 assignments: 1—complete the worksheet
Enhancing Your Web Site—Adding Links Web Page
What Color is it?.
Web Colors.
Stylin’ with CSS.
Presentation transcript:

Basic HTML Tags Ryan Frazier April 30,2004 CSC113

What is HTML? HyperText Markup Language The language used for web pages Based on tags Tags have a start tag and and end tag The end tag looks like the start tag but has a / in it. Example: <TAG> </TAG>

Basic Formatting Bold uses the <B> tag: Example in HTML: The following is <B>bold</B> Example how it would look: The following is bold

Basic Formatting Continued Italic uses the <I> tag: Example in HTML: The following is <I>italic</I> Example how it would look: The following is italic

Basic Formatting Continued Underline uses the <U> tag: Example in HTML: The following is <U>underlined</U> Example how it would look: The following is underlined

Combining Tags Tags can be nested together to have more than one style The tags are nested like this to have something bold and italic: Example in HTML: This is <B><I>bold and italic</I></B> Example how it would look: This is bold and italic

Special Tags There are special tags like: <title> adds a title to the page that shows up in the browser’s window but not on the page itself Example: <title>This is the title of my page</title> This would show up in the top bar of the browser window

Heading Tags There are special tags that have different font sizes to be different headers, like for different sections of the document. The tags are <H1>, <H2>, …<H6> The lower the number, the bigger the heading.

Heading Tags Example Example in HTML: Example how it would look: <H1>This is heading 1</H1> <H2>This is heading 2</H2> <H3>This is heading 3</H3> Example how it would look: This is heading 1 This is heading 2 This is heading 3

HTML Colors Colors can be set by hexadecimal numbers for the amount of red, green, and blue in the color. The color is shown by #xxyyzz where xx is the red part, yy is the green part, and zz is the blue part.

HTML Colors Continued Each of the different color’s numbers is 2 digits, going from 00 to FF. 00 means none of the color FF means all of the color #000000 means no red, green, or blue, which means black #FFFFFF means all red, all green, and all blue, which means white.

HTML Colors Continued Different mixes of the red, green and blue make the different colors. #FF0000 means all red, no green, and no blue, which means bright red. The colors can be mixed, like #FF00FF means all red, no green, and all blue, which makes bright red + bright blue= bright purple.

HTML Colors Continued If the number is less than FF, then it is less of that color. #110000 means a little red, no green, and no blue – this is a very dark red.

Using Colors in Text The <font> tag is used to change the color of the text. Example in HTML: This is <font color=“#FF0000”>bright red</font> Example how it would look: This is bright red

From http://www.pageresource.com/html/hexcodes.htm HTML Color Samples Color Name HEX Code Color black #000000   white #FFFFFF red #FF0000 blue #0000FF green #008000 yellow #FFFF00 orange #FFA500 violet #EE82EE purple #800080 pink #FFC0CB silver #C0C0C0 gold #FFD700 gray #808080 aqua #00FFFF skyblue #87CEEB lightblue #ADD8E6 fuchsia #FF00FF khaki #F0E68C From http://www.pageresource.com/html/hexcodes.htm

Linking to other pages HTML can make links that you can click on to go to other pages from the page you are looking at. The link uses an anchor tag <A> The link includes the URL that you will go to if you click the link.

Link Example Example of a link in HTML: Example how it would look: Click <A HREF=“http://www.yahoo.com”>here</A> to go to the Yahoo site. Example how it would look: Click here to go to the Yahoo site. The underlined blue text above is the way the link would look. If you click on that it would go to Yahoo.

Resources The information for this presentation came from the following web site and the linked pages: http://www.pageresource.com/html/hclist.htm