HTML.

Slides:



Advertisements
Similar presentations
Introduction to HTML
Advertisements

Anatomy of a Web Page. Parts of a Web Page Title Bar Navigation Tool Bar Location Bar Header Graphic/Image Text Horizontal Rule Links.
HTML Basics Customizing your site using the basics of HTML.
HTML popo.
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
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.
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
How Tags are used to form your Web Page
Web Page Development Identify elements of a Web Page Start Notepad
Creating a Web Page HyperText Markup Language. HTML Documents  Created using any text editor  Notepad  Vi, Pico, or Emacs  If using word-processor,
Designing Web Pages Getting to know HTML... What is HTML? Hyper Text Markup Language HTML is the major language of the Internet’s World Wide Web. Web.
Designing Web Pages Getting to know HTML... What is HTML? Hyper Text Markup Language HTML is the major language of the Internet’s World Wide Web Web.
HTML. We’ll learn … What HTML is What tags are What a basic web page looks like What 3 HTML tags are required What HTML comments look like How to title.
Basic XHTML Module 2: XHTML Basics LESSON 1. Module 2: XHTML Basics LESSON 1 Lesson Overview In this lesson, you will learn to:  Write XHTML code using.
Introduction to HTML. Topics HTML –What is HTML –Parts of an HTML Document –HTML Tags.
Define html document byusing Example : Title of the document The content of the document......
Basic HTML Hyper text markup Language. Re-cap  … - The tag tells the browser that this is an HTML document The html element is the outermost element.
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.
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
Amber Annett David Bell October 13 th, What will happen What is this business about personal web pages? Designated location of your own web page.
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.
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Extended Learning Module F Building a Web Page with HTML.
More Basic HTML. Add spacing (single & double space) Save Refresh Add horizontal rule Add comments Add styles Add headings Add features Add alignments.
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.
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.
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.
Just Enough HTML How to Create Basic HTML Documents.
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.
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.
Lesson 2: Basic HTML Code Basic HTML Code. HTML is an acronym for Hypertext Markup Language. Internet browsers translate the HTML code into texts and.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
HTML. Hypertext Markup Language Lesson Objectives 1. We will be able to understand the need for HTML and where it is used 2. We will be edit HTML to.
Introduction to HTML Wah Yan College (Hong Kong) Mr. Li C.P.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
CPT 499 Internet Skills for Educators Session Ten Class Notes.
HTML Lesson 3 Hyper Text Markup Language. Assignment Part 2  Set the file name as “FirstName2.htm”  Set the title as “FirstName LastName First Web Site”
HTML file format  Lesson Objective: Understanding HTML and how it is used to create web pages.  Learning Outcome:  Create a HTML page by interpreting.
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.
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. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
Headings are defined with the to tags. defines the largest heading. defines the smallest heading. Note: Browsers automatically add an empty line before.
Presented by the Monroe County Public Library. Me: Austin Stroud, Instructional Designer at the Monroe County Public Library Adjunct Faculty, Ivy Tech.
Getting Started with HTML. HTML  Hyper Text Markup Language  HTML isn’t a program language, its known as a markup language  A Markup language has tags.
Behind every site is a mix of special languages that your web browser understands The main way of describing any website is HTML HTML stands for Hyper.
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.
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.
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.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
Online PD Basic HTML The Magic Of Web Pages
Introduction to HTML.
Web Basics: HTML/CSS/JavaScript What are they?
Extended Learning Module F
HTML GUIDE Press F5 and then
Uppingham Community College
Hyper Text Markup Language
Creating a Home Page in HTML
HTML Lesson 2.
HTML Lesson 3.
HTML Robert McIntosh
Web Design and Development
If You Know Nothing About HTML, This is Where You Start.
BUILDING A WEBSITE 7.4.2: Basics of HTML and CSS.
Johan Ng and Muhammad Hazzry
HTML.
WJEC GCSE Computer Science
Presentation transcript:

HTML

We’ll learn … What HTML is What tags are What a basic web page look like What 3 HTML tags are required What HTML comments look like How to title your web page How to format the text on your web page How to create headings on your web page How to add pictures to your page

HTML Hyper Text Markup Language Programming language of the internet Markup your text document The markup is the tag Hyper text means you can jump from place to place Programming language of the internet

TAGS Look like this: < > Come in pairs (every begin tag must have an end tag) <html> </html> PAIRS TAGS do not show up on a web page There are 3 REQUIRED TAGS 1. <html> </html> ONLY ONE 2. <head> </head> ONLY ONE (maybe put a title in here) 3. <body> </body> ONLY ONE (stuff that shows up)

Basic Web Page <html> <head> </head> <body> <title> My page </title> </head> <body> Hello this is my page </body> </html> Head section Body section Tags don’t show up on the page

Comments Explains what your code does, who wrote it, when written. Can have them anywhere in your code <!-- Here is my comment -- > <!-- Written by Jill Hubbard, Sept 2009 -->

Title Element Goes inside the head element If you forget it, you’ll have an untitled web page Looks like this: <title> My Home page </title> Where does the title show up?

Text Formatting <p> I’m my own paragraph </p> Text formatting type What It Does Example paragraph Creates paragraphs of text <p> I’m my own paragraph </p> Line break Makes the browser go to the next line I’m Line 1. <br /> I’m Line 2. Bold Makes the text bold <strong> I’m bold </strong> Underline Makes the text underlined <u> I’m underlined </u> Italic Makes the text italic <em> I’m italic </em> Horizontal rule Line across the page <hr />

Headings Creates different sections for your page <h#> </h#> replace # with an actual number (1-6) 1 is the BIGGEST, 6 is the smallest heading <h1> My heading </h1>

Pictures Put a picture on your page <img src=“Name of your picture.extension” /> Example: <img src=“me.jpg” width=“25%”/> The picture MUST be in the same folder as the web page!

Let’s Use this stuff- Getting Started! Create a new folder called “LastName FirstName Project 1” Open up notepad and save the file to your Project 1 folder. Name It: project1.html Add all the required tags (What are they again?) Title your web page: Your Name Project 1 Add a comment on top of the <head> section listing your name, the period, and the date In the <body>, add 2 headings. Title the first heading: “My School” and the second: “Fun Stuff” Separate the headings with a horizontal rule. Find a picture of a school (use google images), download it into your project 1 folder, and add it to the “My School” section of your web page. Add a paragraph with 5 sentences to the “My school” section of your page.

Getting Giffy With It Visit gifmaker.me and create an animated gif of yourself using 2-3 poses. Insert it onto your page in the “fun stuff” section and explain how you made it. Find something else online that is fun or interesting. Include it on your site and explain what it is.