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.

Slides:



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

Learning HTML. > Title of page This is my first homepage. Tells Browser This is an HTML page Basic Tags Tells Browser End of HTML page Header information.
Designing Websites Using HTML and FrontPage A Typical Webpage View Source A webpage is a text file containing instructions to tell a computer how the.
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
HTML. The World Wide Web Protocols Addresses HTML.
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 popo.
Made by: Dan Ye. Introduction Basic Last Page ☆ HTML stands for Hyper Text Markup Language; ☆ HTML is not a programming language, it is a markup language;
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
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
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. Creating a Table Attributes: border: indicates the border type of the table Value: 0 (no border), 1, 2, etc. cols: indicates the number of columns.
Images and Tables. Displaying Image Attributes: SRC= " mypic.gif " – Name of the picture file SRC= " pic/mygif.jpg " – Name of file found in pic directory.
CS105 Introduction to Computer Concepts HTML
HTML & CSS A brief introduction. OUTLINE 1.What is HTML? 2.What is CSS? 3.How are they used together? 4.Troubleshooting/Common problems 5.More resources.
HTML Essentials Frames and Frame Tags. Introduction A frame used to be an effective design tool Utilized space effectively by subdividing screen One idea:
Creating your Webpage with tables. This is a 2 column by 1 row table!
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.
HTML Structure & syntax
Dr. Nuha El-KhaliliInternet Programming ( ) HTML Hyper Text Markup Language The language of web pages Maintained by the W3C
HTML Overview Part 4 – Tables 1. HTML Tables  Tables are defined with the tag pair.  A table is divided into rows with tag pairs. o tr stands for "table.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
>> 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.
Getting Started with HTML Please use speaker notes for additional information!
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.
CS105 INTRODUCTION TO COMPUTER CONCEPTS HTML Instructor: Cuong (Charlie) Pham.
Copyright 2007, Information Builders. Slide 1 Understanding Basic HTML Amanda Regan Technical Director June, 2008.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
Chapter 2 Web Page Design Mr. Gironda. Elements of a Web Page These are things that most web pages use.
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”
Using an HTML image (img) element’s onclick event to change the source (src) of an iframe to an embedded youtube video.
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. 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.
CSE 409 – Advanced Internet Technology 1 DISCUSSION OF BASIC HTML TAGS.
HTML (Hyper Text Markup Language) Lecture II. Review Writing HTML files for web pages – efficient compact – fundamental. Text files with htm extension.
Basic HTML. So, what exactly is HTML? HTML stands for: HTML stands for: Hypertext Markup Language. It is a purpose built markup language for the delivery.
Spiderman ©Marvel Comics Creating Web Pages (part 1)
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
1999, COMPUTER SCIENCE, BUU Introduction to HTML Seree Chinodom
HTML-I Basic HTML Elements. HTML (Hyper Text Markup Language) HTML is a document layout and hyperlink- specification language. i.e. a language used to.
HTML. HTML: What is it? – HTML stands for Hyper Text Markup Language – An HTML file is a text file containing small markup tags – The markup tags tell.
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.
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.
Fall 2016 CSULA Saloni Chacha
Web Basics: HTML/CSS/JavaScript What are they?
HTML basics
Marking Up with XHTML Tags describe how a web page should look
Elements of HTML Web Design – Sec 3-2
>> HTML: Tables.
Elements of HTML Web Design – Sec 3-2
Elements of HTML Web Design – Sec 3-2
HTML Robert McIntosh
H T M L A B E S X P I N D.
TABLES.
Computers and Scientific Thinking David Reed, Creighton University
Basic HTML and Embed Codes
Web Design and Development
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
If You Know Nothing About HTML, This is Where You Start.
Introduction to HTML5.
Pertemuan 1b
Marking Up with XHTML Tags describe how a web page should look
Pertemuan 1 Desain web Pertemuan 1
The Most Basic HTML Page
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
Presentation transcript:

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 up of pairs of tags called elements. Each element tells the web browser information about the web pages content.

The tags for the html element should wrap around all other elements, other than the doctype element. Webpage elements

The head element should be the first element inside the html tags. This element provides information to the web browser about the web page. The following elements can all go inside the head elelment: Head elements

Used to give a title to your web page. This is generally displayed in the top of the web browser or in the tab of the web page to distinguish between different web pages. This is my web page

These tags of this element should contain the content elements for the web page. This element should go directly after the closing head tag. REMEMBER: all content tags go inside the body title Content tags

This element allows the user to define headings within the content of the web page. There are also various other levels of heading down to h6. The following attributes can all be used inside the opening h1 tag: Align- left, right, center, justify Level 1 heading Level 2 heading

This element allows the user to place an image into the content of the web page. The following attributes can all be used inside the opening img tag: Src- location of image Align- left, right, center, justify Border Height width

This element orders the text between the tags into a separate paragraph in the web page. The following attributes can all be used inside the opening p tag: Align- left, right, center, justify This is a paragraph.

This element creates the basis for a table in a web page. These can be used to help layout the web page. The following attributes can all be used inside the opening table tag: Align- left, right, center, justify Bgcolor Border Width Tags to make cells and rows

This element creates a row inside a table. The tr elements should go inside the table element. The following attributes can all be used inside the opening table tag: Align- left, right, center, justify Bgcolor code for table cells

This element creates a table cell inside a table row. The td element should go inside the tr tags. The following attributes can all be used inside the opening table tag: Align- left, right, center, justify Bgcolor cell 1 cell 2

ADDING GAMES Search for ‘ embeddable games This should provide you with the code you need Copy and paste the code into your web page

FOR ANYTHING ELSE… Go to w3schools.com Click on HTML Or use Google to search for what you want to do: HTML Scrolling text HTML Flashing images HTML Image slide show