<start>middle</end> Version 1.1

Slides:



Advertisements
Similar presentations
HTML Basics Customizing your site using the basics of HTML.
Advertisements

Html: getting started HTML is hyper text markup language. It is what web browsers look at on the Internet. HTML documents should be created in a simple.
HTML / CSS – Basics Why the heck are we doing this?
Introduction to HTML II Shih-Heng Chin. Preface Structure of a HTML File Elements used frequently Tables.
Tags through Forms. This element is required for all HTML pages It must be at the top of every page of every website We’ll see later on why it is important.
HTML (HyperText Markup Language)
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.
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.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
April 20023CSG11 Electronic Commerce HTML John Wordsworth Department of Computer Science The University of Reading Room 129, Ext.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
HTML ( HYPER TEXT MARK UP LANGUAGE ). What is HTML HTML describes the content and format of web pages using tags. Ex. Title Tag: A title It’s the job.
HTML HyperText Markup Language ©Richard L. Goldman July 15, 2003.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
Week 2: Building a Simple Website IMC 320 Web Publishing Spring 2011.
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. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
Tutorial #1 Using HTML to Create Web Pages. HTML, XHTML, and CSS HTML – HyperText Markup Language The tags the browser uses to define the content of the.
Chapter 4 HTML Tags. HTML is written in something called tags. Tags come in pairs, an opening one and a closing one. The first pair of tags we'll write.
HTML Help book. HTML HTML is the programming language used to make web pages for the Internet. HTML stands for Hyper Text Markup Language. HTML is made.
HTML Basics Text, Images, Tables, Forms. HTML Structure HTML is comprised of “elements” and “tags” – Begins with and ends with Elements (tags) are nested.
What you can see in the picture?
Online PD Basic HTML The Magic Of Web Pages
INTRO TO WEB DEVELOPMENT html
Introduction to HTML.
HTML Basics.
Introduction to HTML:.
Creating and Linking Web Pages
Internet Exploration: HTML Basics
Web Development Part 1.
Marking Up with XHTML Tags describe how a web page should look
Introduction to basic HTML
How to create a static website with HTML
Elements of HTML Web Design – Sec 3-2
HTML: HyperText Markup Language
Elements of HTML Web Design – Sec 3-2
HTML GUIDE Press F5 and then
HTML5 – Heading, Paragraph
Uppingham Community College
3.00cs HTML Overview 3.00cs Develop webpages.
HTML Formatting.
HTML Lesson 2.
Text Elements.
Internet Exploration: HTML Basics
Elements of HTML Web Design – Sec 3-2
Elements and Attributes
Web Programming– UFCFB Lecture 5
Tag Basics.
HTML.
Text Elements.
HTML Intro.
Computers and Scientific Thinking David Reed, Creighton University
Web Design and Development
5.2.3 Be able to use HTML and CSS to construct web pages
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
Text Elements.
HTML ELEMENTS Ms. Olifer.
Web Programming Language
Intro to Web Development HTML Structure
HTML Formatting Text.
HTML Structure.
Introduction to HTML.
Computer communications
Marking Up with XHTML Tags describe how a web page should look
Text Elements.
Marking Up with XHTML Tags describe how a web page should look
Johan Ng and Muhammad Hazzry
Text Elements.
Marking Up with XHTML Tags describe how a web page should look
Presentation transcript:

<start>middle</end> Version 1.1 HTML, what is it? <start>middle</end> Version 1.1

Things to look forward to What does HTML mean? Right Click > View Sauce, yummy <tag>tastic Tags we use a lot Adding information with Attributes Tips for clean readable code No spaces or smiley faces

What does HTML mean? Hyper Text Mark-up Language Not a complicated programming language Easy to write and understand Interpreted by a browser to display content

Right Click > View Sauce Where to find HTML Right click on your browser and “View Source” Finding out how things are done Can I just copy everyone’s code? There’s more to a web site than just the HTML Judging other Web Sites Finding problems

<tag>tastic Tags are parts of HTML <start>middle</end> VS <block /> <p>This is some text</p> <img /> <br /> <hr /> Tags names are related their purpose <img> = Image - <p> = Paragraph Popular Tags <html><head><title><body> <h1><h2><p><a><img><ul><li> Nested tags <p>I said <strong>STOP!</strong></p>

Tags we use a lot <body> = Everything within this tag we see on the page <head> = Contains information about the page <p> = Paragraph, use for normal text <a> = Anchor Link i.e Hyper Links <h1> = Main page heading, used only once <h2>-<h6> = Sub headings within text <img> = Images, durr! <ul> - Un-Ordered list i.e. bullet point lists <ol> - Ordered Lists – i.e. numbered points <li> - List Items, the actual list items <table>, <tr><td> = Tables, Rows, Cells/Columns <div> = Dividision, a section of the page content <strong> = Bold text and <em> = Italic Text

Adding Information With Attributes An attribute adds information to a tag Some tags need attributes to work <img>, <a>, <input>…. What an attribute looks like attribute=“value” <img src=“picture.jpg” alt=“Sunset” /> <a href=“news.html”>Click to read more</a>

Clean Readable Code Right Tag Right Place <h1> = main page heading <h2> = page sub title <p> = page text NOT = <p>I want to make this <h1>BIG</h1></p> Start your tag, end your tag, add detail <h1></h1> <h1>Now I Can Safely Put My Title</h1> Using Tabs <ul> <li> List Item</li> <li> Another List Item</li> </ul>

No Spaces or Smiley Faces Naming Files index.html NOT home.html product-1234 .jpg NOT product 1234.jpg breaking-news.html NOT breaking-news!!!.html contact-us.html NOT Contact-Us.html

Hope you enjoyed that Please make notes on the presentation slides, it will help you remember.