HTML Structure.

Slides:



Advertisements
Similar presentations
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.
Advertisements

Hyper Text Markup Language.  HTML is a language for describing web pages.  HTML stands for Hyper Text Markup Language  HTML is not a programming language,
WeB application development
A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
XHTML Basics.
1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 1.
Adding HTML to Blackboard
Web Page Development Identify elements of a Web Page Start Notepad
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
Web Design Using HTML Codes. WHAT DO I NEED TO BEGIN DESIGNING A HOME PAGE? 1.YOU NEED A FOLDER (also called a DIRECTORY) You should set up a folder or.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
CS117 Introduction to Computer Science II Lecture 2 Creating an HTML Document Instructor: Li Ma Office: NBC 126 Phone: (713)
HTML Structure & syntax
Essential Tags Web Design – Sec 3-3 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I” Course materials.
All Web pages are written with some form of HTML (HyperText Markup Language). HTML documents are saved as Text Only files so virtually any computer can.
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.
Html Basic Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
HTML CRASH COURSE. What is HTML?  Hyper Text Markup Language  The language used to make web pages  Written by using tags.
Course Content - Chapter 2 Introduction to HTML Introduction to a Text Editor as a web authoring tool Instructional Activity: Creating a webpage using.
By Brieya. What is HTML Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects.
Getting Started with HTML Please use speaker notes for additional information!
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Introduction to HTML. Slide 1 Hard-Coding What is hard-coding? –Creating the page in a text editor just using HTML A Web designer should know how to hard-
Creating Webpage Using HTML
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 ( 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.
Introducing the World Wide Web Internet- a structure made up of millions of interconnected computers whose users communicate with each other and share.
The Teacher Computing HTML HyperText Markup Language.
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.
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.
This shows CIS17 and the first day introduction..
PART 1: Introduction to HTML & CSS. Lecture 1: HTML 5 Basic Structure.
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-I Basic HTML Elements. HTML (Hyper Text Markup Language) HTML is a document layout and hyperlink- specification language. i.e. a language used to.
Step 1: Starting an HTML Document: Right Click: new>text document.
Using HTML. Glogger Glogger is like you own personal web page, you can add… Pictures Text Videos Music, etc… Modify and adjust anything you want Glogger.
HTML Basic Structure. Page Title My First Heading My first paragraph.
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.
Click on CIS120/17 to go to website for course. The week of will tell you what is planned for the week and what has been assigned.
Project 02 Creating and Editing a Web Page Concept Map of Unit Creating and Editing a Web Page Key Learning Understand the elements to create a web page.
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 HTML Page 1. First Open Windows Notepad to type your HTML code 2.
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.
NOTEPAD++ Lab 1 1 Riham ALSmari. Why Notepad++ ?  Syntax highlighting  Tabbed document interface  Zooming  Indentation code  Find and replace over.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
HTML Structure & syntax
Getting Started – Basic Page Structure
Pertemuan 1 Desain web Pertemuan 1
Web Basics: HTML/CSS/JavaScript What are they?
Introduction to HTML:.
HTML basics
Uppingham Community College
Essentials of HTML.
Working with HTML These are the examples you need to go over. Click on the name like HTML5intro.html and it will bring up the page. If you right click.
Essentials of HTML.
HTML HYPERTEXT MARKUP LANGUAGE.
Basic HTML and Embed Codes
Intro to Web Development HTML Structure
Intro to Web Development Links
Structuring Content in a Web Document
HTML Basic Structure.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Web Application Development
Creating your first website
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
The Most Basic HTML Page
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Presentation transcript:

HTML Structure

Creating Your HTML Page Your html will be written in a file with the extension .html E.g. “home.html” You will open this file in a text editor like “notepad” in order to edit it’s contents You will view the complete version of your page on a web browser.

Doctype In an html file, the first line you write is the doctype The doctype is instructions to the browser on which version of html your code is written in. It looks like: <!DOCTYPE html> Your HTML tags will come after this line

HTML Tags You need to tell your web browser how to understand your document. E.g. Where a paragraph should start and end, or where to put a link, and where to link to. Tags are instructions to the web browser. Telling it how to interpret your document

<html> tags You need to tell your browser where your html code starts and finishes. The browser will interpret everything inside the html tags as html code <html> will be the first line in your file html code starts (Opening Tag) html code ends (Closing Tag)

<TAGNAME> Opening Tags The tag begins with an opening carrot Then you see the tag name, e.g. html And it ends with a closing carrot <TAGNAME>

</TAGNAME> Closing Tags The tag begins with an opening carrot Then you see the tag name, e.g. html Followed by a Slash And it ends with a closing carrot </TAGNAME>

Page Structure Below we have our basic page structure Inside our html tags we have a set of head tags, and body tags

Containers I like to think of this in terms of containers. Notice we indent each container! html Container head Container body Container

The head Tag Meta data

The head tag The head tag contains data that effects the page without actually being shown on the page, an example of this is the title tag. Add a title tag as illustrated below

Viewing the Title Notice that the title isn’t part of the document area. This is why it’s contained in the head tag Title Document

The Body Tag Creating the document

Adding Content to the body When we add content to the body tag it will appear in the document